ruffle/render/wgpu/Cargo.toml

46 lines
1.3 KiB
TOML
Raw Normal View History

[package]
name = "ruffle_render_wgpu"
authors = ["Nathan Adams <dinnerbone@dinnerbone.com>"]
edition.workspace = true
homepage.workspace = true
license.workspace = true
repository.workspace = true
version.workspace = true
[dependencies]
wgpu = { workspace = true, features = ["naga"] }
tracing = { workspace = true }
ruffle_render = { path = "..", features = ["tessellator", "wgpu"] }
2023-09-17 21:06:56 +00:00
bytemuck = { version = "1.14.0", features = ["derive"] }
2023-10-09 21:59:27 +00:00
raw-window-handle = "0.5.2"
2023-10-31 22:01:51 +00:00
clap = { version = "4.4.7", features = ["derive"], optional = true }
2023-10-23 00:22:08 +00:00
enum-map = "2.7.0"
fnv = "1.0.7"
swf = { path = "../../swf" }
image = { version = "0.24.7", default-features = false }
naga_oil = { workspace = true }
2023-09-04 00:58:54 +00:00
ouroboros = "0.18.0"
2023-01-10 15:16:37 +00:00
typed-arena = "2.0.2"
naga-agal = { path = "../naga-agal" }
naga-pixelbender = { path = "../naga-pixelbender" }
downcast-rs = "1.2.0"
profiling = { version = "1.0", default-features = false, optional = true }
2023-10-04 21:47:44 +00:00
lru = "0.12.0"
naga = { workspace = true }
2023-10-31 22:01:51 +00:00
indexmap = "2.1.0"
# desktop
[target.'cfg(not(target_family = "wasm"))'.dependencies.futures]
2023-10-31 22:01:51 +00:00
version = "0.3.29"
# wasm
[target.'cfg(target_family = "wasm")'.dependencies.web-sys]
2023-11-06 00:21:36 +00:00
version = "0.3.65"
features = ["HtmlCanvasElement"]
[features]
render_debug_labels = []
render_trace = ["wgpu/trace"]
webgl = ["wgpu/webgl"]
profile-with-tracy = ["profiling", "profiling/profile-with-tracy"]