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.
98 lines
2.8 KiB
TOML
98 lines
2.8 KiB
TOML
[package]
|
|
name = "wgpu-test"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
description = "common code for wgpu tests"
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
keywords.workspace = true
|
|
license.workspace = true
|
|
rust-version.workspace = true
|
|
publish = false
|
|
|
|
[[test]]
|
|
name = "wgpu-compile"
|
|
harness = true
|
|
|
|
[[test]]
|
|
name = "wgpu-dependency"
|
|
harness = true
|
|
|
|
[[test]]
|
|
name = "wgpu-gpu"
|
|
harness = false
|
|
|
|
[[test]]
|
|
name = "wgpu-validation"
|
|
harness = true
|
|
|
|
[features]
|
|
webgl = ["wgpu/webgl"]
|
|
# This feature is not actually used by this package, but it being present somewhere in the workspace
|
|
# allows us to force the build to have profiling code enabled so we can test that configuration.
|
|
test-build-with-profiling = ["profiling/type-check"]
|
|
|
|
# Note that even though this is a package of tests and a library of tests, there is a split of
|
|
# [depenencies] and [dev-dependencies]. This is because keeping as many deps as possible as
|
|
# dev-dependencies will make the dependency graph just a bit shallower, and makes
|
|
# `cargo clippy -- -Wunused-crate-dependencies` give fewer false positives.
|
|
[dependencies]
|
|
wgpu = { workspace = true, features = ["noop"] }
|
|
wgpu-hal = { workspace = true, features = ["validation_canary"] }
|
|
wgpu-macros.workspace = true
|
|
|
|
anyhow.workspace = true
|
|
arrayvec.workspace = true
|
|
bitflags.workspace = true
|
|
bytemuck.workspace = true
|
|
cfg-if.workspace = true
|
|
ctor.workspace = true
|
|
futures-lite.workspace = true
|
|
libtest-mimic.workspace = true
|
|
log.workspace = true
|
|
png.workspace = true
|
|
pollster.workspace = true
|
|
profiling.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
|
|
[dev-dependencies]
|
|
approx.workspace = true
|
|
glam.workspace = true
|
|
half = { workspace = true, features = ["bytemuck", "std"] }
|
|
itertools.workspace = true
|
|
image.workspace = true
|
|
nanorand.workspace = true
|
|
parking_lot.workspace = true
|
|
strum = { workspace = true, features = ["derive"] }
|
|
trybuild.workspace = true
|
|
|
|
# Non-Webassembly
|
|
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
|
|
# Cargo-metadata doesn't compile on wasm due to old cargo-util-schemas dependency.
|
|
cargo_metadata.workspace = true
|
|
env_logger.workspace = true
|
|
parking_lot = { workspace = true, features = ["deadlock_detection"] }
|
|
|
|
[target.'cfg(not(any(target_arch = "wasm32", miri)))'.dependencies]
|
|
nv-flip.workspace = true
|
|
|
|
# Webassembly
|
|
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
|
console_log.workspace = true
|
|
wasm-bindgen.workspace = true
|
|
web-sys = { workspace = true }
|
|
|
|
# Webassembly Dev Dependencies
|
|
[target.'cfg(target_arch = "wasm32")'.dev-dependencies]
|
|
image.workspace = true
|
|
js-sys.workspace = true
|
|
wasm-bindgen-futures.workspace = true
|
|
wasm-bindgen-test.workspace = true
|
|
wasm-bindgen.workspace = true
|
|
web-sys = { workspace = true, features = ["CanvasRenderingContext2d", "Blob"] }
|
|
|
|
[lints.clippy]
|
|
disallowed_types = "allow"
|