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
|
|
|
|
|
|
|
|
[features]
|
2022-10-15 02:55:36 +00:00
|
|
|
angle = ["wgc/angle"]
|
2023-01-04 21:35:29 +00:00
|
|
|
vulkan-portability = ["wgc/vulkan"]
|
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
|
2020-04-29 04:42:35 +00:00
|
|
|
features = ["replay"]
|
|
|
|
|
|
|
|
[dependencies.wgc]
|
2022-10-20 05:41:17 +00:00
|
|
|
workspace = true
|
2022-10-08 05:12:50 +00:00
|
|
|
features = ["replay", "raw-window-handle", "strict_asserts", "wgsl"]
|
2020-08-12 18:52:21 +00:00
|
|
|
|
2023-01-04 21:35:29 +00:00
|
|
|
[target.'cfg(any(target_os = "macos", target_os = "ios"))'.dependencies.wgc]
|
|
|
|
workspace = true
|
|
|
|
features = ["metal"]
|
|
|
|
|
|
|
|
[target.'cfg(windows)'.dependencies.wgc]
|
|
|
|
workspace = true
|
|
|
|
features = ["dx11", "dx12"]
|
|
|
|
|
|
|
|
[target.'cfg(any(windows, all(unix, not(target_arch = "emscripten"), not(target_os = "ios"), not(target_os = "macos"))))'.dependencies.wgc]
|
|
|
|
workspace = true
|
|
|
|
features = ["vulkan"]
|
|
|
|
|
2020-07-17 03:56:47 +00:00
|
|
|
[dev-dependencies]
|
2022-10-20 05:41:17 +00:00
|
|
|
serde.workspace = true
|