ruffle/desktop/Cargo.toml

71 lines
2.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_desktop"
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]
2023-10-04 21:47:44 +00:00
clap = { version = "4.4.6", features = ["derive"] }
cpal = "0.15.2"
egui = { workspace = true }
egui-wgpu = { version = "0.23.0", features = ["winit"] }
egui-winit = "0.23.0"
2023-10-04 21:47:44 +00:00
fontdb = "0.15"
ruffle_core = { path = "../core", features = ["audio", "clap", "mp3", "nellymoser", "default_compatibility_rules", "egui", "default_font"] }
2023-02-03 15:59:18 +00:00
ruffle_render = { path = "../render", features = ["clap"] }
ruffle_render_wgpu = { path = "../render/wgpu", features = ["clap"] }
ruffle_video_software = { path = "../video/software", optional = true }
tracing = { workspace = true}
tracing-subscriber = { workspace = true }
generational-arena = "0.2.9"
2023-10-04 21:47:44 +00:00
winit = "0.28.7"
2023-10-16 00:51:05 +00:00
webbrowser = "0.8.12"
2023-09-04 00:58:54 +00:00
url = "2.4.1"
arboard = "3.2.1"
dirs = "5.0"
isahc = { version = "1.7.2", features = ["cookies"] }
2023-09-17 21:06:56 +00:00
rfd = "0.12.0"
anyhow = "1.0"
2023-09-17 21:06:56 +00:00
bytemuck = "1.14.0"
os_info = { version = "3", default-features = false }
2023-04-21 23:44:01 +00:00
unic-langid = "0.9.1"
2023-08-28 01:21:01 +00:00
sys-locale = "0.3.1"
wgpu = { workspace = true }
futures = "0.3.28"
chrono = { version = "0.4", default-features = false, features = [] }
2023-05-23 17:04:01 +00:00
fluent-templates = "0.8.0"
futures-lite = "1.13.0"
async-io = "1.13.0"
2023-10-04 21:47:44 +00:00
async-net = "1.8.0"
2023-07-29 11:38:27 +00:00
async-channel = "1.9.0"
# Deliberately held back to match tracy client used by profiling crate
tracing-tracy = { version = "=0.10.2", optional = true }
[target.'cfg(windows)'.dependencies]
winapi = "0.3.9"
[build-dependencies]
embed-resource = "2"
2023-09-17 21:06:56 +00:00
vergen = { version = "8.2.5", features = ["build", "git", "gitcl", "cargo"] }
[features]
default = ["software_video"]
jpegxr = ["ruffle_core/jpegxr"]
2021-04-21 07:22:42 +00:00
# core features
avm_debug = ["ruffle_core/avm_debug"]
2021-04-21 07:22:42 +00:00
lzma = ["ruffle_core/lzma"]
software_video = ["ruffle_video_software"]
tracy = ["tracing-tracy", "ruffle_render_wgpu/profile-with-tracy"]
2021-04-21 07:22:42 +00:00
# wgpu features
render_debug_labels = ["ruffle_render_wgpu/render_debug_labels"]
render_trace = ["ruffle_render_wgpu/render_trace"]
2021-04-21 07:22:42 +00:00
# sandboxing
sandbox = []