ruffle/render/wgpu/Cargo.toml

47 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
[lints]
workspace = true
[dependencies]
2024-01-09 23:01:58 +00:00
wgpu = { workspace = true, features = ["naga-ir"] }
tracing = { workspace = true }
ruffle_render = { path = "..", features = ["tessellator", "wgpu"] }
2024-02-19 10:08:26 +00:00
bytemuck = { version = "1.14.3", features = ["derive"] }
2024-01-09 23:01:58 +00:00
raw-window-handle = "0.6.0"
2024-02-19 10:08:26 +00:00
clap = { version = "4.5.1", features = ["derive"], optional = true }
2023-11-27 01:12:39 +00:00
enum-map = "2.7.3"
fnv = "1.0.7"
swf = { path = "../../swf" }
2024-02-26 06:38:57 +00:00
image = { version = "0.24.9", default-features = false }
naga_oil = { workspace = true }
naga-agal = { path = "../naga-agal" }
naga-pixelbender = { path = "../naga-pixelbender" }
downcast-rs = "1.2.0"
profiling = { version = "1.0", default-features = false, optional = true }
2024-02-26 06:38:57 +00:00
lru = "0.12.3"
naga = { workspace = true }
2024-03-01 11:53:55 +00:00
indexmap = "2.2.5"
# desktop
[target.'cfg(not(target_family = "wasm"))'.dependencies.futures]
2023-12-25 06:27:55 +00:00
version = "0.3.30"
# wasm
[target.'cfg(target_family = "wasm")'.dependencies.web-sys]
version = "0.3.69"
features = ["HtmlCanvasElement"]
[features]
render_debug_labels = []
render_trace = ["wgpu/trace"]
webgl = ["wgpu/webgl"]
profile-with-tracy = ["profiling", "profiling/profile-with-tracy"]