2020-04-29 04:42:35 +00:00
|
|
|
[package]
|
|
|
|
name = "player"
|
2022-10-20 05:41:17 +00:00
|
|
|
version.workspace = true
|
|
|
|
authors.workspace = true
|
|
|
|
edition.workspace = true
|
2020-04-29 04:42:35 +00:00
|
|
|
description = "WebGPU trace player"
|
2022-10-20 05:41:17 +00:00
|
|
|
homepage.workspace = true
|
|
|
|
repository.workspace = true
|
|
|
|
keywords.workspace = true
|
|
|
|
license.workspace = true
|
2020-04-29 04:42:35 +00:00
|
|
|
publish = false
|
|
|
|
|
2023-11-23 10:26:42 +00:00
|
|
|
[lib]
|
|
|
|
name = "player"
|
|
|
|
path = "src/lib.rs"
|
|
|
|
test = false
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "play"
|
|
|
|
path = "src/bin/play.rs"
|
|
|
|
test = false
|
|
|
|
|
2020-04-29 04:42:35 +00:00
|
|
|
[dependencies]
|
2022-10-20 05:41:17 +00:00
|
|
|
env_logger.workspace = true
|
|
|
|
log.workspace = true
|
|
|
|
raw-window-handle.workspace = true
|
|
|
|
ron.workspace = true
|
|
|
|
winit = { workspace = true, optional = true }
|
2020-04-29 04:42:35 +00:00
|
|
|
|
|
|
|
[dependencies.wgt]
|
2022-10-20 05:41:17 +00:00
|
|
|
workspace = true
|
2024-01-28 20:13:04 +00:00
|
|
|
features = ["serde"]
|
2020-04-29 04:42:35 +00:00
|
|
|
|
2023-06-10 18:35:46 +00:00
|
|
|
[target.'cfg(not(target_arch = "wasm32"))'.dependencies.wgc]
|
2022-10-20 05:41:17 +00:00
|
|
|
workspace = true
|
2024-10-04 14:57:23 +00:00
|
|
|
features = [
|
|
|
|
"replay",
|
|
|
|
"raw-window-handle",
|
|
|
|
"strict_asserts",
|
|
|
|
"wgsl",
|
|
|
|
"metal",
|
|
|
|
"dx12",
|
|
|
|
"vulkan",
|
|
|
|
"gles",
|
|
|
|
]
|
2023-01-04 21:35:29 +00:00
|
|
|
|
2020-07-17 03:56:47 +00:00
|
|
|
[dev-dependencies]
|
2022-10-20 05:41:17 +00:00
|
|
|
serde.workspace = true
|