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"] }
downcast-rs = "1.2.0"
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 = { version = "=0.2.92", 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"]