ruffle/tests/Cargo.toml

40 lines
1.0 KiB
TOML

[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"] }
ruffle_render_wgpu = { path = "../render/wgpu" }
ruffle_render = { path = "../render" }
ruffle_input_format = { path = "input-format" }
image = { version = "0.24.5", default-features = false, features = ["png"] }
regex = "1.7.1"
[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 = []
[dev-dependencies]
approx = "0.5.1"
pretty_assertions = "1.3.0"
env_logger = "0.10.0"
serde = "1.0"
toml = "0.5.10"
libtest-mimic = "0.6.0"
walkdir = "2.3.2"
anyhow = "1.0"
once_cell = "1.17.0"
[[test]]
name = "tests"
harness = false
path = "tests/regression_tests.rs"