ruffle/tests/framework/Cargo.toml

34 lines
987 B
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]
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.25.0", default-features = false, features = ["png"] }
2024-03-25 01:06:03 +00:00
regex = "1.10.4"
2023-11-27 01:12:39 +00:00
url = "2.5.0"
chrono = { workspace = true }
approx = "0.5.1"
pretty_assertions = "1.4.0"
2024-02-26 06:38:57 +00:00
serde = "1.0.197"
2024-03-22 09:57:29 +00:00
toml = "0.8.12"
anyhow = { workspace = true }
async-channel = { workspace = true }
2024-03-14 14:40:54 +00:00
vfs = "0.12.0"
2023-11-27 01:12:39 +00:00
percent-encoding = "2.3.1"
[features]
jpegxr = ["ruffle_core/jpegxr"]
lzma = ["ruffle_core/lzma"]