ruffle/tests/framework/Cargo.toml

38 lines
1.0 KiB
TOML
Raw Normal View History

[package]
name = "ruffle_test_framework"
authors.workspace = true
edition.workspace = true
homepage.workspace = true
license.workspace = true
repository.workspace = true
version.workspace = true
[lints]
workspace = true
[dependencies]
2023-12-25 06:27:55 +00:00
futures = "0.3.30"
ruffle_core = { path = "../../core", features = ["deterministic", "timeline_debug", "avm_debug", "audio", "mp3", "default_font"] }
ruffle_render = { path = "../../render" }
ruffle_input_format = { path = "../input-format" }
ruffle_socket_format = { path = "../socket-format" }
ruffle_video_software = { path = "../../video/software", optional = true }
image = { version = "0.24.7", default-features = false, features = ["png"] }
regex = "1.10.2"
2023-11-27 01:12:39 +00:00
url = "2.5.0"
chrono = "0.4.31"
approx = "0.5.1"
pretty_assertions = "1.4.0"
2023-11-13 00:25:49 +00:00
env_logger = "0.10.1"
tracing = { workspace = true}
tracing-subscriber = { workspace = true }
2024-01-08 01:33:37 +00:00
serde = "1.0.195"
2023-11-13 00:25:49 +00:00
toml = "0.8.8"
2024-01-08 01:33:37 +00:00
anyhow = "1.0.79"
2023-11-27 01:12:39 +00:00
async-channel = "2.1.1"
vfs = "0.10.0"
2023-11-27 01:12:39 +00:00
percent-encoding = "2.3.1"
[features]
jpegxr = ["ruffle_core/jpegxr"]
lzma = ["ruffle_core/lzma"]