wgpu/player/Cargo.toml

36 lines
700 B
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 = "2021"
2020-04-29 04:42:35 +00:00
description = "WebGPU trace player"
homepage = "https://github.com/gfx-rs/wgpu"
repository = "https://github.com/gfx-rs/wgpu"
keywords = ["graphics"]
2021-06-18 17:40:31 +00:00
license = "MIT OR Apache-2.0"
2020-04-29 04:42:35 +00:00
publish = false
[features]
[dependencies]
2022-02-19 04:24:18 +00:00
env_logger = "0.9"
2020-04-29 16:37:55 +00:00
log = "0.4"
raw-window-handle = "0.5"
2022-09-19 03:53:21 +00:00
ron = "0.8"
winit = { version = "0.27", optional = true }
2020-04-29 04:42:35 +00:00
[dependencies.wgt]
path = "../wgpu-types"
package = "wgpu-types"
features = ["replay"]
[dependencies.wgc]
path = "../wgpu-core"
package = "wgpu-core"
features = ["replay", "raw-window-handle", "strict_asserts"]
2020-07-17 03:56:47 +00:00
[dev-dependencies]
serde = "1"