diff options
Diffstat (limited to '')
-rw-r--r-- | gfx/wgpu/player/Cargo.toml | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/gfx/wgpu/player/Cargo.toml b/gfx/wgpu/player/Cargo.toml new file mode 100644 index 0000000000..7e4a766be7 --- /dev/null +++ b/gfx/wgpu/player/Cargo.toml @@ -0,0 +1,43 @@ +[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" +log = "0.4" +raw-window-handle = "0.3" +renderdoc = { version = "0.8", optional = true, default_features = false } +ron = "0.6" +winit = { version = "0.22", optional = true } + +[dependencies.wgt] +path = "../wgpu-types" +package = "wgpu-types" +version = "0.6" +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" +version = "0.1" + +[dev-dependencies] +serde = "1" |