ruffle/web/Cargo.toml

46 lines
1.3 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_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]
base64 = "0.11.0"
2019-05-03 02:11:47 +00:00
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-24 17:25:03 +00:00
fnv = "1.0.3"
2019-05-10 00:43:53 +00:00
generational-arena = "0.2.2"
js-sys = "0.3.25"
2019-05-03 02:11:47 +00:00
log = "0.4"
png = "0.14.1"
svg = "0.5.12"
url = "1.7.2"
wasm-bindgen = "0.2.48"
[dependencies.jpeg-decoder]
version = "0.1.16"
default-features = false # can't use rayon on web
[dependencies.ruffle_core]
path = "../core"
default-features = false
features = ["puremp3"]
2019-04-28 01:15:43 +00:00
2019-04-28 06:08:59 +00:00
[dependencies.web-sys]
version = "0.3.32"
features = [
2019-10-30 21:06:00 +00:00
"AudioBuffer", "AudioBufferSourceNode", "AudioParam", "AudioProcessingEvent", "AudioContext", "AudioDestinationNode",
"AudioNode", "CanvasRenderingContext2d", "ChannelMergerNode", "ChannelSplitterNode", "CssStyleDeclaration", "Document",
"Element", "Event", "EventTarget", "GainNode", "HtmlCanvasElement", "HtmlElement", "HtmlImageElement", "MouseEvent",
"Navigator", "Node", "Performance", "ScriptProcessorNode", "Window", "Location", "HtmlFormElement"]
2019-04-28 06:08:59 +00:00
2019-04-28 01:15:43 +00:00
[dev-dependencies]
wasm-bindgen-test = "0.3.5"