mirror of
https://github.com/gfx-rs/wgpu.git
synced 2024-11-25 16:24:24 +00:00
121cfa2759
Bumps [js-sys](https://github.com/rustwasm/wasm-bindgen) from 0.3.61 to 0.3.63. - [Release notes](https://github.com/rustwasm/wasm-bindgen/releases) - [Changelog](https://github.com/rustwasm/wasm-bindgen/blob/main/CHANGELOG.md) - [Commits](https://github.com/rustwasm/wasm-bindgen/commits) --- updated-dependencies: - dependency-name: js-sys dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
45 lines
958 B
TOML
45 lines
958 B
TOML
[package]
|
|
name = "wgpu-types"
|
|
version = "0.16.0"
|
|
authors = ["wgpu developers"]
|
|
edition = "2021"
|
|
description = "WebGPU types"
|
|
homepage = "https://wgpu.rs/"
|
|
repository = "https://github.com/gfx-rs/wgpu"
|
|
keywords = ["graphics"]
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
targets = [
|
|
"x86_64-unknown-linux-gnu",
|
|
"x86_64-apple-darwin",
|
|
"x86_64-pc-windows-msvc",
|
|
"wasm32-unknown-unknown",
|
|
]
|
|
|
|
[lib]
|
|
|
|
[features]
|
|
trace = ["serde"]
|
|
replay = ["serde"]
|
|
strict_asserts = []
|
|
|
|
[dependencies]
|
|
bitflags = "2"
|
|
serde = { version = "1", features = ["serde_derive"], optional = true }
|
|
|
|
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
|
js-sys = "0.3.63"
|
|
web-sys = { version = "0.3.60", features = [
|
|
"ImageBitmap",
|
|
"HtmlVideoElement",
|
|
"HtmlCanvasElement",
|
|
"OffscreenCanvas",
|
|
] }
|
|
|
|
[dev-dependencies]
|
|
serde = { version = "1", features = ["serde_derive"] }
|
|
serde_json = "1.0.96"
|