ruffle/core/Cargo.toml

56 lines
1.4 KiB
TOML
Raw Normal View History

2019-04-28 01:15:43 +00:00
[package]
2019-05-08 16:46:19 +00:00
name = "ruffle_core"
2019-04-28 01:15:43 +00:00
version = "0.1.0"
authors = ["Mike Welsh <mwelsh@gmail.com>"]
edition = "2018"
license = "MIT OR Apache-2.0"
2019-04-28 01:15:43 +00:00
[dependencies]
2021-01-04 21:00:55 +00:00
bitstream-io = "1.0.0"
flate2 = "1.0.20"
fnv = "1.0.7"
gc-arena = { git = "https://github.com/ruffle-rs/gc-arena" }
gc-arena-derive = { git = "https://github.com/ruffle-rs/gc-arena" }
generational-arena = "0.2.8"
gif = "0.11.1"
indexmap = "1.6.2"
2019-04-28 01:15:43 +00:00
log = "0.4"
minimp3 = { version = "0.5.1", optional = true }
png = { version = "0.16.8" }
puremp3 = { version = "0.1", optional = true }
ruffle_macros = { path = "macros" }
swf = { path = "../swf" }
bitflags = "1.2.1"
smallvec = "1.6.1"
num_enum = "0.5.1"
quick-xml = "0.22.0"
downcast-rs = "1.2.0"
url = "2.2.1"
weak-table = "0.3.0"
percent-encoding = "2.1.0"
thiserror = "1.0"
json = "0.12.4"
2020-07-08 18:26:00 +00:00
chrono = "0.4"
num-traits = "0.2"
instant = "0.1"
encoding_rs = "0.8.28"
rand = { version = "0.8.3", features = ["std", "small_rng"], default-features = false }
serde = { version = "1.0.124", features = ["derive"], optional = true }
2020-12-05 20:42:57 +00:00
nellymoser-rs = { git = "https://github.com/ruffle-rs/nellymoser", branch = "main" }
regress = "0.2"
2019-07-19 08:32:41 +00:00
[dependencies.jpeg-decoder]
version = "0.1.22"
default-features = false # can't use rayon on web
[dev-dependencies]
approx = "0.4.0"
pretty_assertions = "0.7.1"
env_logger = "0.8.3"
2019-07-19 08:32:41 +00:00
[features]
2021-01-06 07:32:07 +00:00
default = ["minimp3", "serde"]
2019-10-12 06:02:20 +00:00
lzma = ["swf/lzma"]
wasm-bindgen = [ "instant/wasm-bindgen" ]
avm_debug = []