ruffle/tests/Cargo.toml

25 lines
650 B
TOML
Raw Normal View History

[package]
name = "tests"
version = "0.1.0"
authors = ["Aaron Hill <aa1ronham@gmail.com>"]
2021-10-21 16:27:12 +00:00
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
futures = "0.3.19"
ruffle_core = { path = "../core" }
2021-02-20 18:10:04 +00:00
ruffle_render_wgpu = { path = "../render/wgpu" }
image = "0.23.14"
[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.0"
pretty_assertions = "1.0.0"
env_logger = "0.9.0"