[package] name = "tests" authors = ["Aaron Hill "] 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", "audio", "mp3"] } ruffle_render_wgpu = { path = "../render/wgpu" } ruffle_render = { path = "../render" } ruffle_input_format = { path = "input-format" } ruffle_video_software = { path = "../video/software", optional = true } image = { version = "0.24.5", default-features = false, features = ["png"] } regex = "1.7.1" url = "2.3.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 = ["ruffle_video_software"] [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"