wgpu/player/Cargo.toml

36 lines
682 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"
2021-11-23 09:42:22 +00:00
raw-window-handle = "0.4"
2021-11-05 02:41:21 +00:00
ron = "0.7"
2021-11-23 09:42:22 +00:00
winit = { version = "0.26", 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"]
2020-07-17 03:56:47 +00:00
[dev-dependencies]
serde = "1"