ruffle/core/Cargo.toml

47 lines
949 B
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.8.5"
fnv = "1.0.7"
gc-arena = "0.2.0"
gc-arena-derive = "0.2.0"
generational-arena = "0.2.8"
gif = "0.10.3"
indexmap = "1.3.2"
libflate = "1.0.0"
2019-04-28 01:15:43 +00:00
log = "0.4"
minimp3 = { version = "0.3.5", optional = true }
png = { version = "0.16.3" }
puremp3 = { version = "0.1", optional = true }
ruffle_macros = { path = "macros" }
swf = { path = "../swf" }
2020-04-13 11:14:29 +00:00
enumset = "1.0.0"
smallvec = "1.4.0"
num_enum = "0.5.0"
quick-xml = "0.18.1"
downcast-rs = "1.1.1"
url = "2.1.0"
weak-table = "0.2.3"
2019-07-19 08:32:41 +00:00
[dependencies.jpeg-decoder]
version = "0.1.19"
default-features = false # can't use rayon on web
[dependencies.rand]
version = "0.7.3"
features = ["small_rng"]
[dev-dependencies]
approx = "0.3.2"
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"]
avm_debug = []