ruffle/core/Cargo.toml

54 lines
1.1 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]
bitstream-io = "0.9.0"
2020-10-11 10:09:23 +00:00
flate2 = "1.0.18"
fnv = "1.0.7"
gc-arena = "0.2.0"
gc-arena-derive = "0.2.0"
generational-arena = "0.2.8"
gif = "0.11.1"
indexmap = "1.6.0"
2019-04-28 01:15:43 +00:00
log = "0.4"
minimp3 = { version = "0.5.0", optional = true }
png = { version = "0.16.7" }
puremp3 = { version = "0.1", optional = true }
ruffle_macros = { path = "macros" }
swf = { path = "../swf" }
enumset = "1.0.1"
smallvec = "1.4.2"
num_enum = "0.5.1"
quick-xml = "0.18.1"
downcast-rs = "1.2.0"
url = "2.1.0"
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"
2019-07-19 08:32:41 +00:00
[dependencies.jpeg-decoder]
version = "0.1.20"
default-features = false # can't use rayon on web
[dependencies.rand]
version = "0.7.3"
features = ["small_rng"]
[dev-dependencies]
approx = "0.4.0"
pretty_assertions = "0.6.1"
2019-07-19 08:32:41 +00:00
[features]
2019-10-12 07:07:10 +00:00
default = ["minimp3"]
2019-10-12 06:02:20 +00:00
lzma = ["swf/lzma"]
wasm-bindgen = [ "instant/wasm-bindgen" ]
avm_debug = []