ruffle/tests/Cargo.toml

28 lines
808 B
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"] }
ruffle_render_wgpu = { path = "../render/wgpu", optional = true }
ruffle_input_format = { path = "input-format" }
image = "0.24.5"
regex = "1.7.0"
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_render_wgpu"]
[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"