ruffle/tests/framework/Cargo.toml

36 lines
1.0 KiB
TOML
Raw Normal View History

[package]
name = "ruffle_test_framework"
authors.workspace = true
edition.workspace = true
homepage.workspace = true
license.workspace = true
repository.workspace = true
version.workspace = true
[lints]
workspace = true
[dependencies]
ruffle_core = { path = "../../core", features = ["deterministic", "timeline_debug", "avm_debug", "audio", "mp3", "default_font"] }
ruffle_render = { path = "../../render" }
ruffle_input_format = { path = "../input-format" }
ruffle_socket_format = { path = "../socket-format" }
ruffle_video_software = { path = "../../video/software", optional = true }
ruffle_video_external = { path = "../../video/external", optional = true }
2024-04-04 11:54:37 +00:00
image = { workspace = true, features = ["png"] }
2024-03-25 01:06:03 +00:00
regex = "1.10.4"
2024-04-04 12:02:07 +00:00
url = { workspace = true }
chrono = { workspace = true }
approx = "0.5.1"
pretty_assertions = "1.4.0"
2024-04-04 12:00:14 +00:00
serde = { workspace = true }
build(deps): bump the cargo-minor group with 4 updates Bumps the cargo-minor group with 4 updates: [proc-macro2](https://github.com/dtolnay/proc-macro2), [toml_edit](https://github.com/toml-rs/toml), [zip](https://github.com/zip-rs/zip2) and [toml](https://github.com/toml-rs/toml). Updates `proc-macro2` from 1.0.84 to 1.0.85 - [Release notes](https://github.com/dtolnay/proc-macro2/releases) - [Commits](https://github.com/dtolnay/proc-macro2/compare/1.0.84...1.0.85) Updates `toml_edit` from 0.22.13 to 0.22.14 - [Commits](https://github.com/toml-rs/toml/compare/v0.22.13...v0.22.14) Updates `zip` from 2.1.1 to 2.1.2 - [Release notes](https://github.com/zip-rs/zip2/releases) - [Changelog](https://github.com/zip-rs/zip2/blob/master/CHANGELOG.md) - [Commits](https://github.com/zip-rs/zip2/compare/v2.1.1...v2.1.2) Updates `toml` from 0.8.13 to 0.8.14 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.13...toml-v0.8.14) --- updated-dependencies: - dependency-name: proc-macro2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo-minor - dependency-name: toml_edit dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo-minor - dependency-name: zip dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo-minor - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo-minor ... Signed-off-by: dependabot[bot] <support@github.com>
2024-06-03 20:27:19 +00:00
toml = "0.8.14"
anyhow = { workspace = true }
async-channel = { workspace = true }
2024-03-14 14:40:54 +00:00
vfs = "0.12.0"
2023-11-27 01:12:39 +00:00
percent-encoding = "2.3.1"
[features]
jpegxr = ["ruffle_core/jpegxr"]
lzma = ["ruffle_core/lzma"]