mirror of
https://github.com/gfx-rs/wgpu.git
synced 2026-04-22 03:02:01 -04:00
Naga is now a workspace with `naga` and `cli` as its two members. The default package for cargo commands is `cli`, so that `cargo run` will just run the CLI. However, this has a few unexpected consequences: - Now `cargo test` will just try to run `cli`'s tests, of which there are none. Adding `"."` to the `default-members` list in the workspace's `Cargo.toml` seems to fix this, without breaking `cargo run`. - Even with `"."` added to `default-members`, `cargo test` will build `naga` by default with the features requested for it in `cli/Cargo.toml`: all the front and back ends, but no `serialize` or `deserialize`. This means that our CI job meant to verify no-feature builds isn't doing that job any more. We need to pass `--package naga` to `cargo test` to make it test naga directly.
60 lines
1.6 KiB
TOML
60 lines
1.6 KiB
TOML
[package]
|
|
name = "naga"
|
|
version = "0.4.0"
|
|
authors = ["Naga Developers"]
|
|
edition = "2018"
|
|
description = "Shader translation infrastructure"
|
|
homepage = "https://github.com/gfx-rs/naga"
|
|
repository = "https://github.com/gfx-rs/naga"
|
|
keywords = ["shader", "SPIR-V", "GLSL", "MSL"]
|
|
license = "MIT OR Apache-2.0"
|
|
exclude = ["bin/**/*", "tests/**/*", "Cargo.lock", "target/**/*"]
|
|
resolver = "2"
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
|
|
[dependencies]
|
|
bitflags = "1"
|
|
bit-set = "0.5"
|
|
codespan-reporting = { version = "0.11.0", optional = true }
|
|
fxhash = "0.2"
|
|
log = "0.4"
|
|
num-traits = "0.2"
|
|
spirv = { package = "spirv_headers", version = "1.5", optional = true }
|
|
thiserror = "1.0.21"
|
|
serde = { version = "1.0", features = ["derive"], optional = true }
|
|
petgraph = { version ="0.5", optional = true }
|
|
rose_tree = { version ="0.2", optional = true }
|
|
pp-rs = { git = "https://github.com/Kangz/glslpp-rs.git", optional = true, rev = "c02476b" }
|
|
|
|
[features]
|
|
default = []
|
|
dot-out = []
|
|
glsl-in = ["pp-rs"]
|
|
glsl-validate = []
|
|
glsl-out = ["petgraph"]
|
|
msl-out = []
|
|
serialize = ["serde"]
|
|
deserialize = ["serde"]
|
|
spv-in = ["petgraph", "spirv", "rose_tree"]
|
|
spv-out = ["spirv"]
|
|
wgsl-in = ["codespan-reporting"]
|
|
wgsl-out = []
|
|
hlsl-out = []
|
|
|
|
[dev-dependencies]
|
|
diff = "0.1"
|
|
ron = "0.6"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
spirv = { package = "spirv_headers", version = "1.5", features = ["deserialize"] }
|
|
rspirv = "0.7"
|
|
|
|
[workspace]
|
|
members = [".", "cli"]
|
|
|
|
# Include "cli", so that `cargo run` runs the CLI by default. Include ".", so
|
|
# that `cargo test` includes naga's own tests by default (but note, using the
|
|
# features that `cli/Cargo.toml` requests).
|
|
default-members = [".", "cli"]
|