ruffle/web/Cargo.toml

34 lines
942 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_web"
2019-04-28 01:15:43 +00:00
version = "0.1.0"
authors = ["Mike Welsh <mwelsh@gmail.com>"]
edition = "2018"
[lib]
crate-type = ["cdylib", "rlib"]
2019-04-28 06:08:59 +00:00
[features]
default = ["console_error_panic_hook", "console_log"]
2019-04-28 01:15:43 +00:00
[dependencies]
2019-05-03 02:11:47 +00:00
base64 = "0.10.1"
byteorder = "1.3.1"
2019-04-28 01:15:43 +00:00
console_error_panic_hook = { version = "0.1.1", optional = true }
console_log = { version = "0.1", optional = true }
2019-05-08 16:46:19 +00:00
ruffle_core = { path = "../core" }
2019-05-10 00:43:53 +00:00
generational-arena = "0.2.2"
2019-05-03 02:11:47 +00:00
inflate = "0.4.5"
jpeg-decoder = "0.1.15"
2019-04-28 01:15:43 +00:00
js-sys = "0.3.19"
2019-05-03 02:11:47 +00:00
log = "0.4"
png = "0.14.1"
svg = "0.5.12"
url = "1.7.2"
2019-04-28 01:15:43 +00:00
wasm-bindgen = "0.2"
2019-04-28 06:08:59 +00:00
[dependencies.web-sys]
version = "0.3.19"
features = ["AudioBuffer", "AudioBufferSourceNode", "AudioContext", "AudioDestinationNode", "AudioNode", "CanvasRenderingContext2d", "CssStyleDeclaration", "Document", "Element", "HtmlCanvasElement", "HtmlElement", "HtmlImageElement", "Node", "Performance", "Window"]
2019-04-28 06:08:59 +00:00
2019-04-28 01:15:43 +00:00
[dev-dependencies]
wasm-bindgen-test = "0.2"