ruffle/core/Cargo.toml

94 lines
3.0 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
[lints]
workspace = true
2019-04-28 01:15:43 +00:00
[dependencies]
linkme = { version = "0.3", optional = true }
2023-10-09 21:59:27 +00:00
byteorder = "1.5"
2023-12-18 06:16:34 +00:00
bitstream-io = "2.2.0"
flate2 = { workspace = true }
fnv = "1.0.7"
gc-arena = { package = "ruffle_gc_arena", path = "../ruffle_gc_arena" }
slotmap = { workspace = true }
2024-03-25 01:06:03 +00:00
indexmap = "2.2.6"
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 = { workspace = true }
2024-03-22 09:57:29 +00:00
smallvec = { version = "1.13.2", features = ["union"] }
num-traits = { workspace = true }
num-derive = { workspace = true }
2023-10-31 22:01:51 +00:00
quick-xml = "0.31.0"
downcast-rs = "1.2.0"
2023-11-27 01:12:39 +00:00
url = "2.5.0"
weak-table = "0.3.2"
2023-11-27 01:12:39 +00:00
percent-encoding = "2.3.1"
thiserror = "1.0"
chrono = { workspace = true, features = ["clock"] }
2023-12-25 06:27:55 +00:00
web-time = "0.2.4"
2023-08-28 01:21:01 +00:00
encoding_rs = "0.8.33"
rand = { version = "0.8.5", features = ["std", "small_rng"], default-features = false }
2024-04-04 12:00:14 +00:00
serde = { workspace = true, features = ["derive"] }
serde_json = { version = "1.0", features = ["preserve_order"] }
nellymoser-rs = { git = "https://github.com/ruffle-rs/nellymoser", rev = "754b1184037aa9952a907107284fb73897e26adc", optional = true }
2024-03-01 11:53:55 +00:00
regress = "0.9"
flash-lso = { git = "https://github.com/ruffle-rs/rust-flash-lso", rev = "2f770555ea49c6db49c57c1dd46c7cc686e8dacc" }
2023-01-10 15:16:37 +00:00
lzma-rs = {version = "0.3.0", optional = true }
dasp = { version = "0.11.0", features = ["interpolate", "interpolate-linear", "signal"], optional = true }
2024-03-01 11:53:55 +00:00
symphonia = { version = "0.5.4", default-features = false, features = ["mp3"], optional = true }
2023-10-16 00:51:05 +00:00
enumset = "1.1.3"
bytemuck = { workspace = true }
2024-04-04 11:41:44 +00:00
clap = { workspace = true, optional=true }
realfft = "3.3.0"
2023-11-27 01:12:39 +00:00
hashbrown = { version = "0.14.3", features = ["raw"] }
scopeguard = "1.2.0"
2024-03-14 14:40:54 +00:00
fluent-templates = "0.9.1"
egui = { workspace = true, optional = true }
2024-04-02 23:08:07 +00:00
egui_extras = { version = "0.27.2", optional = true }
2024-02-19 10:08:26 +00:00
png = { version = "0.17.13", optional = true }
2023-04-16 00:10:02 +00:00
flv-rs = { path = "../flv" }
async-channel = { workspace = true }
jpegxr = { git = "https://github.com/ruffle-rs/jpegxr", branch = "ruffle", optional = true }
2024-04-04 11:54:37 +00:00
image = { workspace = true, features = ["tiff"] }
enum-map = { workspace = true }
ttf-parser = "0.20"
num-bigint = "0.4"
unic-segment = "0.9.0"
2024-03-04 04:35:43 +00:00
id3 = "1.13.1"
either = "1.10.0"
2019-07-19 08:32:41 +00:00
[target.'cfg(not(target_family = "wasm"))'.dependencies.futures]
workspace = true
[target.'cfg(target_family = "wasm")'.dependencies.wasm-bindgen-futures]
version = "0.4.42"
2019-07-19 08:32:41 +00:00
[features]
default = []
2021-06-22 08:26:27 +00:00
lzma = ["lzma-rs", "swf/lzma"]
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"]
jpegxr = ["dep:jpegxr", "lzma"]
default_font = []
[build-dependencies]
build_playerglobal = { path = "build_playerglobal" }