ruffle/tests/Cargo.toml

40 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
[lints]
workspace = true
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_test_framework/ruffle_video_software", "ruffle_render_wgpu"]
jpegxr = ["ruffle_test_framework/jpegxr"]
lzma = ["ruffle_test_framework/lzma"]
[dependencies]
ruffle_render_wgpu = { path = "../render/wgpu", optional = true }
[dev-dependencies]
ruffle_core = { path = "../core", features = ["deterministic", "timeline_debug", "avm_debug", "audio", "mp3", "default_font"] }
ruffle_test_framework = { path = "framework" }
2024-01-15 22:25:22 +00:00
libtest-mimic = "0.7.0"
2023-09-17 21:06:56 +00:00
walkdir = "2.4.0"
2024-02-19 10:08:26 +00:00
anyhow = "1.0.80"
2024-02-26 06:38:57 +00:00
image = { version = "0.24.9", default-features = false, features = ["png"] }
2023-12-25 06:27:55 +00:00
futures = "0.3.30"
2024-02-19 10:08:26 +00:00
env_logger = "0.11.2"
tracing = { workspace = true }
tracing-subscriber = { workspace = true }
[[test]]
name = "tests"
harness = false
path = "tests/regression_tests.rs"