mirror of
https://github.com/gfx-rs/wgpu.git
synced 2024-10-30 14:01:39 +00:00
b3b8a0c1cd
Bumps [serde_json](https://github.com/serde-rs/json) from 1.0.85 to 1.0.94. - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.85...v1.0.94) --- updated-dependencies: - dependency-name: serde_json 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.15.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 = "1"
|
|
serde = { version = "1", features = ["serde_derive"], optional = true }
|
|
|
|
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
|
js-sys = "0.3.60"
|
|
web-sys = { version = "0.3.60", features = [
|
|
"ImageBitmap",
|
|
"HtmlVideoElement",
|
|
"HtmlCanvasElement",
|
|
"OffscreenCanvas",
|
|
] }
|
|
|
|
[dev-dependencies]
|
|
serde = { version = "1", features = ["serde_derive"] }
|
|
serde_json = "1.0.94"
|