ruffle/desktop/Cargo.toml

76 lines
2.2 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
[lints]
workspace = true
2019-04-28 01:15:43 +00:00
[dependencies]
2024-02-19 10:08:26 +00:00
clap = { version = "4.5.1", features = ["derive"] }
cpal = "0.15.2"
egui = { workspace = true }
egui_extras = { version = "0.26.2", features = ["image"] }
egui-wgpu = { version = "0.26.2", features = ["winit"] }
image = { version = "0.24", features = ["png"] }
egui-winit = "0.26.2"
2023-10-31 22:01:51 +00:00
fontdb = "0.16"
2024-01-08 19:38:59 +00:00
ruffle_core = { path = "../core", features = ["audio", "clap", "mp3", "nellymoser", "default_compatibility_rules", "egui"] }
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"
winit = "0.29.10"
2023-10-16 00:51:05 +00:00
webbrowser = "0.8.12"
2023-11-27 01:12:39 +00:00
url = "2.5.0"
2024-02-19 10:08:26 +00:00
arboard = { version = "3.3.1", features = ["wayland-data-control"] }
dirs = "5.0"
isahc = { version = "1.7.2", features = ["cookies"] }
2024-01-15 22:25:22 +00:00
rfd = "0.13.0"
anyhow = "1.0"
2024-02-19 10:08:26 +00:00
bytemuck = "1.14.3"
os_info = { version = "3", default-features = false }
2023-12-18 06:16:34 +00:00
unic-langid = "0.9.4"
2023-08-28 01:21:01 +00:00
sys-locale = "0.3.1"
wgpu = { workspace = true }
2023-12-25 06:27:55 +00:00
futures = "0.3.30"
chrono = { version = "0.4", default-features = false, features = [] }
2023-05-23 17:04:01 +00:00
fluent-templates = "0.8.0"
2024-01-08 01:33:37 +00:00
futures-lite = "2.2.0"
2024-01-29 06:47:01 +00:00
async-io = "2.3.1"
async-net = "2.0.0"
2024-02-19 10:08:26 +00:00
async-channel = "2.2.0"
# Deliberately held back to match tracy client used by profiling crate
tracing-tracy = { version = "=0.10.4", optional = true }
[target.'cfg(windows)'.dependencies]
winapi = "0.3.9"
[build-dependencies]
embed-resource = "2"
2024-01-22 01:48:50 +00:00
vergen = { version = "8.3.1", 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 = []