ruffle/render/Cargo.toml

53 lines
1.4 KiB
TOML
Raw Normal View History

[package]
name = "ruffle_render"
authors.workspace = true
edition.workspace = true
homepage.workspace = true
license.workspace = true
repository.workspace = true
version.workspace = true
[lints]
workspace = true
[dependencies]
ruffle_wstr = { path = "../wstr" }
swf = { path = "../swf"}
tracing = { workspace = true }
2024-01-29 06:47:01 +00:00
gif = "0.13.1"
2024-02-19 10:08:26 +00:00
png = "0.17.13"
flate2 = { workspace = true }
2024-03-22 09:57:29 +00:00
smallvec = { version = "1.13.2", features = ["union"] }
build(deps): bump the cargo-minor group with 6 updates Bumps the cargo-minor group with 6 updates: | Package | From | To | | --- | --- | --- | | [image](https://github.com/image-rs/image) | `0.25.0` | `0.25.1` | | [downcast-rs](https://github.com/marcianx/downcast-rs) | `1.2.0` | `1.2.1` | | [regress](https://github.com/ridiculousfish/regress) | `0.9.0` | `0.9.1` | | [syn](https://github.com/dtolnay/syn) | `2.0.55` | `2.0.58` | | [webbrowser](https://github.com/amodm/webbrowser-rs) | `0.8.13` | `0.8.14` | | [getrandom](https://github.com/rust-random/getrandom) | `0.2.12` | `0.2.14` | Updates `image` from 0.25.0 to 0.25.1 - [Changelog](https://github.com/image-rs/image/blob/main/CHANGES.md) - [Commits](https://github.com/image-rs/image/compare/v0.25.0...v0.25.1) Updates `downcast-rs` from 1.2.0 to 1.2.1 - [Changelog](https://github.com/marcianx/downcast-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/marcianx/downcast-rs/compare/v1.2.0...v1.2.1) Updates `regress` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/ridiculousfish/regress/releases) - [Commits](https://github.com/ridiculousfish/regress/compare/v0.9.0...v0.9.1) Updates `syn` from 2.0.55 to 2.0.58 - [Release notes](https://github.com/dtolnay/syn/releases) - [Commits](https://github.com/dtolnay/syn/compare/2.0.55...2.0.58) Updates `webbrowser` from 0.8.13 to 0.8.14 - [Release notes](https://github.com/amodm/webbrowser-rs/releases) - [Changelog](https://github.com/amodm/webbrowser-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/amodm/webbrowser-rs/compare/v0.8.13...v0.8.14) Updates `getrandom` from 0.2.12 to 0.2.14 - [Changelog](https://github.com/rust-random/getrandom/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-random/getrandom/compare/v0.2.12...v0.2.14) --- updated-dependencies: - dependency-name: image dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo-minor - dependency-name: downcast-rs dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo-minor - dependency-name: regress dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo-minor - dependency-name: syn dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo-minor - dependency-name: webbrowser dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo-minor - dependency-name: getrandom dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo-minor ... Signed-off-by: dependabot[bot] <support@github.com>
2024-04-08 20:55:16 +00:00
downcast-rs = "1.2.1"
lyon = { version = "1.0.1", optional = true }
2024-01-01 00:12:22 +00:00
lyon_geom = "1.0.5"
thiserror = { workspace = true }
wasm-bindgen = { workspace = true, optional = true }
enum-map = { workspace = true }
2024-04-04 12:00:14 +00:00
serde = { workspace = true, features = ["derive"] }
2024-04-04 11:41:44 +00:00
clap = { workspace = true, optional = true }
2024-03-22 08:12:32 +00:00
h263-rs-yuv = { git = "https://github.com/ruffle-rs/h263-rs", rev = "5c8d9d7d86f62b70ca484df006a75a9c8ff1985c"}
num-traits = { workspace = true }
num-derive = { workspace = true }
2023-10-09 21:59:27 +00:00
byteorder = "1.5"
wgpu = { workspace = true, optional = true }
2024-03-25 01:06:03 +00:00
indexmap = "2.2.6"
# This crate has a `compile_error!` on apple platforms
[target.'cfg(not(target_vendor = "apple"))'.dependencies.renderdoc]
2024-03-02 07:36:21 +00:00
version = "0.12.1"
optional = true
[dependencies.jpeg-decoder]
2024-01-15 22:25:22 +00:00
version = "0.3.1"
default-features = false # can't use rayon on web
[dev-dependencies]
approx = "0.5.1"
[features]
default = []
tessellator = ["lyon"]
web = ["wasm-bindgen"]
wgpu = ["dep:wgpu"]