wgpu/player/Cargo.toml

47 lines
1.1 KiB
TOML
Raw Normal View History

2020-04-29 04:42:35 +00:00
[package]
name = "player"
version = "0.1.0"
authors = [
"Dzmitry Malyshau <kvark@mozilla.com>",
]
edition = "2018"
description = "WebGPU trace player"
homepage = "https://github.com/gfx-rs/wgpu"
repository = "https://github.com/gfx-rs/wgpu"
keywords = ["graphics"]
license = "MPL-2.0"
publish = false
[features]
[dependencies]
env_logger = "0.7"
2020-04-29 16:37:55 +00:00
log = "0.4"
raw-window-handle = "0.3"
renderdoc = { version = "0.8", optional = true, default_features = false }
2020-08-17 05:07:03 +00:00
ron = "0.6"
2020-04-29 16:37:55 +00:00
winit = { version = "0.22", optional = true }
2020-04-29 04:42:35 +00:00
[dependencies.wgt]
path = "../wgpu-types"
package = "wgpu-types"
version = "0.6"
2020-04-29 04:42:35 +00:00
features = ["replay"]
[dependencies.wgc]
path = "../wgpu-core"
package = "wgpu-core"
version = "0.6"
features = ["replay", "raw-window-handle"]
[dependencies.wgpu-subscriber]
git = "https://github.com/gfx-rs/subscriber.git"
rev = "cdc9feb53f152f9c41905ed9efeff2c1ed214361"
2020-08-13 16:14:19 +00:00
version = "0.1"
2020-06-01 20:54:26 +00:00
[target.'cfg(all(unix, not(target_os = "ios"), not(target_os = "macos")))'.dependencies]
2020-08-17 05:07:03 +00:00
gfx-backend-vulkan = { version = "0.6", features = ["x11"] }
2020-07-17 03:56:47 +00:00
[dev-dependencies]
serde = "1"