2020-04-29 04:42:35 +00:00
|
|
|
[package]
|
|
|
|
name = "player"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = [
|
|
|
|
"Dzmitry Malyshau <kvark@mozilla.com>",
|
|
|
|
]
|
2022-06-30 18:24:17 +00:00
|
|
|
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"
|
2022-08-04 06:09:37 +00:00
|
|
|
raw-window-handle = "0.5"
|
2022-09-19 03:53:21 +00:00
|
|
|
ron = "0.8"
|
2022-08-04 06:09:37 +00:00
|
|
|
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"
|
2022-08-08 04:45:39 +00:00
|
|
|
features = ["replay", "raw-window-handle", "strict_asserts"]
|
2020-08-12 18:52:21 +00:00
|
|
|
|
2020-07-17 03:56:47 +00:00
|
|
|
[dev-dependencies]
|
|
|
|
serde = "1"
|