ruffle/core/Cargo.toml

82 lines
2.7 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"
authors.workspace = true
edition.workspace = true
homepage.workspace = true
license.workspace = true
repository.workspace = true
version.workspace = true
2019-04-28 01:15:43 +00:00
[dependencies]
linkme = { version = "0.3", optional = true }
byteorder = "1.4"
bitstream-io = "1.7.0"
flate2 = "1.0.26"
fnv = "1.0.7"
gc-arena = { package = "ruffle_gc_arena", path = "../ruffle_gc_arena" }
generational-arena = "0.2.9"
indexmap = "2.0.0"
tracing = { workspace = true }
ruffle_render = { path = "../render", features = ["tessellator"] }
ruffle_video = { path = "../video" }
ruffle_macros = { path = "macros" }
ruffle_wstr = { path = "../wstr" }
swf = { path = "../swf" }
bitflags = "2.3.3"
smallvec = { version = "1.11.0", features = ["union"] }
2021-06-05 12:41:05 +00:00
num-traits = "0.2"
num-derive = "0.4"
quick-xml = "0.30.0"
downcast-rs = "1.2.0"
url = "2.4.0"
weak-table = "0.3.2"
percent-encoding = "2.3.0"
thiserror = "1.0"
chrono = { version = "0.4", default-features = false, features = ["clock"] }
instant = "0.1"
encoding_rs = "0.8.32"
rand = { version = "0.8.5", features = ["std", "small_rng"], default-features = false }
serde = { version = "1.0.180", features = ["derive"] }
serde_json = { version = "1.0", features = ["preserve_order"] }
nellymoser-rs = { git = "https://github.com/ruffle-rs/nellymoser", rev = "4a33521c29a918950df8ae9fe07e527ac65553f5", optional = true }
regress = "0.6"
flash-lso = { git = "https://github.com/ruffle-rs/rust-flash-lso", rev = "3669a352c14192d0d301e594ae6047ae99725006" }
2023-01-10 15:16:37 +00:00
lzma-rs = {version = "0.3.0", optional = true }
dasp = { git = "https://github.com/RustAudio/dasp", rev = "f05a703", features = ["interpolate", "interpolate-linear", "signal"], optional = true }
symphonia = { version = "0.5.3", default-features = false, features = ["mp3"], optional = true }
enumset = "1.1.2"
2023-03-06 02:02:53 +00:00
bytemuck = "1.13.1"
clap = { version = "4.3.19", features = ["derive"], optional=true }
realfft = "3.3.0"
hashbrown = { version = "0.14.0", features = ["raw"] }
scopeguard = "1.2.0"
2023-04-21 23:44:01 +00:00
fluent-templates = "0.8.0"
2023-05-31 09:32:58 +00:00
egui = { version = "0.22.0", optional = true }
egui_extras = { version = "0.22.0", optional = true }
png = { version = "0.17.9", optional = true }
2023-04-16 00:10:02 +00:00
flv-rs = { path = "../flv" }
async-channel = "1.9.0"
2019-07-19 08:32:41 +00:00
[target.'cfg(not(target_family = "wasm"))'.dependencies.futures]
version = "0.3.28"
[target.'cfg(target_family = "wasm")'.dependencies.wasm-bindgen-futures]
2023-06-15 18:01:00 +00:00
version = "0.4.37"
2019-07-19 08:32:41 +00:00
[features]
default = []
2021-06-22 08:26:27 +00:00
lzma = ["lzma-rs", "swf/lzma"]
wasm-bindgen = ["instant/wasm-bindgen"]
avm_debug = []
deterministic = []
timeline_debug = []
2022-09-07 18:44:12 +00:00
mp3 = ["symphonia"]
nellymoser = ["nellymoser-rs"]
audio = ["dasp"]
known_stubs = ["linkme"]
default_compatibility_rules = []
2023-06-07 21:31:44 +00:00
egui = ["dep:egui", "dep:egui_extras", "png"]
[build-dependencies]
build_playerglobal = { path = "build_playerglobal" }