mirror of
https://github.com/gfx-rs/wgpu.git
synced 2025-12-08 21:26:17 +00:00
* Removed unnecessary dependency in `wgpu` on `hashbrown`. * Removed unused dependencies in `naga-test`. * Moved some dependencies in `wgpu-test` to `[dev-dependencies]` (see comment for why this is worth doing). Candidates were discovered by `cargo clippy -- -Wunused-crate-dependencies`. This command reports whether each dependency is unused in each *crate*, so it has false positives when a dependency is used by only some crates in a package, but it is still useful as a short-list.
37 lines
721 B
TOML
37 lines
721 B
TOML
[package]
|
|
name = "naga-test"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
description = "common code for naga tests"
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
keywords.workspace = true
|
|
license.workspace = true
|
|
rust-version.workspace = true
|
|
publish = false
|
|
|
|
|
|
[features]
|
|
|
|
[dependencies]
|
|
naga = { workspace = true, features = [
|
|
"serialize",
|
|
"deserialize",
|
|
"glsl-in",
|
|
"glsl-out",
|
|
"spv-in",
|
|
"spv-out",
|
|
"wgsl-in",
|
|
"wgsl-out",
|
|
"msl-out",
|
|
"dot-out",
|
|
"hlsl-out",
|
|
] }
|
|
spirv = { workspace = true, features = ["deserialize"] }
|
|
ron.workspace = true
|
|
toml.workspace = true
|
|
bitflags.workspace = true
|
|
serde_json.workspace = true
|
|
serde.workspace = true
|