ruffle/render/wgpu/Cargo.toml

51 lines
1.4 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"] }
bytemuck = { workspace = true, features = ["derive"] }
2024-04-04 11:41:44 +00:00
clap = { workspace = true, optional = true }
enum-map = { workspace = true }
fnv = "1.0.7"
swf = { path = "../../swf" }
image = { version = "0.25.0", default-features = false }
naga_oil = { workspace = true }
naga-agal = { path = "../naga-agal" }
naga-pixelbender = { path = "../naga-pixelbender" }
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-25 01:06:03 +00:00
indexmap = "2.2.6"
# desktop
[target.'cfg(not(target_family = "wasm"))'.dependencies.futures]
workspace = true
# 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"]
[package.metadata.cargo-machete]
ignored = [
# Not used directly, declared only to enable its `profile-with-tracy` feature.
"profiling"
]