ruffle/render/Cargo.toml

34 lines
766 B
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
[dependencies]
swf = { path = "../swf"}
log = "0.4"
gif = "0.12.0"
png = { version = "0.17.7" }
2022-11-25 16:17:44 +00:00
flate2 = "1.0.25"
smallvec = { version = "1.10.0", features = ["union"] }
downcast-rs = "1.2.0"
lyon = { version = "1.0.1", optional = true }
thiserror = "1.0"
wasm-bindgen = { version = "=0.2.83", optional = true }
gc-arena = { git = "https://github.com/ruffle-rs/gc-arena" }
[dependencies.jpeg-decoder]
version = "0.3.0"
default-features = false # can't use rayon on web
[dev-dependencies]
approx = "0.5.1"
[features]
default = []
tessellator = ["lyon"]
web = ["wasm-bindgen"]