ruffle/tests/Cargo.toml

43 lines
1.2 KiB
TOML
Raw Normal View History

[package]
name = "tests"
authors = ["Aaron Hill <aa1ronham@gmail.com>"]
edition.workspace = true
homepage.workspace = true
license.workspace = true
repository.workspace = true
version.workspace = true
[dependencies]
futures = "0.3.25"
ruffle_core = { path = "../core", features = ["deterministic", "timeline_debug", "avm_debug", "audio", "mp3"] }
ruffle_render_wgpu = { path = "../render/wgpu" }
ruffle_render = { path = "../render" }
ruffle_input_format = { path = "input-format" }
ruffle_video_software = { path = "../video/software", optional = true }
image = { version = "0.24.5", default-features = false, features = ["png"] }
regex = "1.7.1"
2023-04-05 17:30:24 +00:00
url = "2.3.1"
2021-02-20 18:10:04 +00:00
[features]
# Enable running image comparison tests. This is off by default,
# since the images we compare against are generated on CI, and may
# not match your local machine's Vulkan version / image output.
imgtests = ["ruffle_video_software"]
[dev-dependencies]
2022-11-25 16:17:44 +00:00
approx = "0.5.1"
pretty_assertions = "1.3.0"
2022-11-25 16:17:44 +00:00
env_logger = "0.10.0"
tracing = { workspace = true}
tracing-subscriber = { workspace = true }
serde = "1.0"
toml = "0.7.4"
libtest-mimic = "0.6.0"
walkdir = "2.3.2"
anyhow = "1.0"
[[test]]
name = "tests"
harness = false
path = "tests/regression_tests.rs"