ruffle/tests/framework/Cargo.toml

36 lines
1.1 KiB
TOML

[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]
ruffle_core = { path = "../../core", features = ["deterministic", "timeline_debug", "avm_debug", "audio", "mp3", "default_font", "serde"] }
ruffle_render = { path = "../../render", features = ["serde"] }
ruffle_input_format = { path = "../input-format" }
ruffle_socket_format = { path = "../socket-format" }
ruffle_video_software = { path = "../../video/software", optional = true }
ruffle_video_external = { path = "../../video/external", optional = true }
image = { workspace = true, features = ["png"] }
regex = "1.10.5"
url = { workspace = true }
chrono = { workspace = true }
approx = "0.5.1"
pretty_assertions = "1.4.0"
serde = { workspace = true }
toml = "0.8.15"
anyhow = { workspace = true }
async-channel = { workspace = true }
vfs = "0.12.0"
percent-encoding = "2.3.1"
[features]
jpegxr = ["ruffle_core/jpegxr"]
lzma = ["ruffle_core/lzma"]