mirror of
https://github.com/gfx-rs/wgpu.git
synced 2024-11-22 14:55:05 +00:00
d5ba0b439d
* WIP: add cts_runner and deno_webgpu crate * add test * remove Cargo.lock * review comment * simplify * fix bugs * improve cts_runner to work with crowlKats/webgpu-examples * fix * remove build.rs cts_runner binaries are now not portable anymore. Also startup will now print a bunch of cargo:rerun-if-changed=. This will be fixed in deno_core. * remove d.ts * add original deno license file
22 lines
537 B
TOML
22 lines
537 B
TOML
[package]
|
|
name = "wgpu-types"
|
|
version = "0.10.0"
|
|
authors = ["wgpu developers"]
|
|
edition = "2018"
|
|
description = "WebGPU types"
|
|
homepage = "https://github.com/gfx-rs/wgpu"
|
|
repository = "https://github.com/gfx-rs/wgpu"
|
|
keywords = ["graphics"]
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
[lib]
|
|
|
|
[features]
|
|
trace = ["serde", "bitflags_serde_shim"]
|
|
replay = ["serde", "bitflags_serde_shim"]
|
|
|
|
[dependencies]
|
|
bitflags = "1.0"
|
|
serde = { version = "1.0", features = ["serde_derive"], optional = true }
|
|
bitflags_serde_shim = { version = "0.2", optional = true }
|