ruffle/tests/Cargo.toml

47 lines
1.4 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.28"
ruffle_core = { path = "../core", features = ["deterministic", "timeline_debug", "avm_debug", "audio", "mp3", "default_font"] }
ruffle_render_wgpu = { path = "../render/wgpu" }
ruffle_render = { path = "../render" }
ruffle_input_format = { path = "input-format" }
ruffle_socket_format = { path = "socket-format" }
ruffle_video_software = { path = "../video/software", optional = true }
2023-08-21 03:57:59 +00:00
image = { version = "0.24.7", default-features = false, features = ["png"] }
2023-10-09 21:59:27 +00:00
regex = "1.10.0"
2023-09-04 00:58:54 +00:00
url = "2.4.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.
2023-10-02 20:20:47 +00:00
imgtests = ["ruffle_video_software"]
jpegxr = ["ruffle_core/jpegxr"]
lzma = ["ruffle_core/lzma"]
[dev-dependencies]
2022-11-25 16:17:44 +00:00
approx = "0.5.1"
pretty_assertions = "1.4.0"
2022-11-25 16:17:44 +00:00
env_logger = "0.10.0"
tracing = { workspace = true}
tracing-subscriber = { workspace = true }
2023-08-28 01:21:01 +00:00
serde = "1.0.188"
2023-10-04 21:47:44 +00:00
toml = "0.8.2"
libtest-mimic = "0.6.1"
2023-09-17 21:06:56 +00:00
walkdir = "2.4.0"
2023-08-21 03:57:59 +00:00
anyhow = "1.0.75"
2023-07-29 11:39:19 +00:00
async-channel = "1.9.0"
[[test]]
name = "tests"
harness = false
path = "tests/regression_tests.rs"