trisquel-icecat/icecat/third_party/rust/naga/Cargo.toml

146 lines
2.6 KiB
TOML

# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.
[package]
edition = "2021"
rust-version = "1.74"
name = "naga"
version = "0.20.0"
authors = ["gfx-rs developers"]
exclude = [
"bin/**/*",
"tests/**/*",
"Cargo.lock",
"target/**/*",
]
autotests = false
description = "Shader translation infrastructure"
readme = "README.md"
keywords = [
"shader",
"SPIR-V",
"GLSL",
"MSL",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/gfx-rs/wgpu/tree/trunk/naga"
resolver = "2"
[package.metadata.docs.rs]
all-features = true
[[test]]
name = "naga-test"
path = "tests/root.rs"
[dependencies]
arrayvec = "0.7"
bit-set = "0.5"
bitflags = "2.5"
log = "0.4"
rustc-hash = "1.1.0"
thiserror = "1.0.61"
[dependencies.arbitrary]
version = "1.3"
features = ["derive"]
optional = true
[dependencies.codespan-reporting]
version = "0.11.0"
[dependencies.hexf-parse]
version = "0.2.1"
optional = true
[dependencies.indexmap]
version = "2"
features = ["std"]
[dependencies.petgraph]
version = "0.6"
optional = true
[dependencies.pp-rs]
version = "0.2.1"
optional = true
[dependencies.serde]
version = "1.0.202"
features = ["derive"]
optional = true
[dependencies.spirv]
version = "0.3"
optional = true
[dependencies.termcolor]
version = "1.4.1"
[dependencies.unicode-xid]
version = "0.2.3"
optional = true
[dev-dependencies]
diff = "0.1"
env_logger = "0.11"
ron = "0.8.0"
[dev-dependencies.hlsl-snapshots]
path = "./hlsl-snapshots"
[dev-dependencies.rspirv]
version = "0.11"
git = "https://github.com/gfx-rs/rspirv"
rev = "b969f175d5663258b4891e44b76c1544da9661ab"
[dev-dependencies.serde]
version = "1.0"
features = ["derive"]
[dev-dependencies.spirv]
version = "0.3"
features = ["deserialize"]
[features]
arbitrary = [
"dep:arbitrary",
"bitflags/arbitrary",
"indexmap/arbitrary",
]
compact = []
default = []
deserialize = [
"dep:serde",
"bitflags/serde",
"indexmap/serde",
]
dot-out = []
glsl-in = ["dep:pp-rs"]
glsl-out = []
hlsl-out = []
msl-out = []
serialize = [
"dep:serde",
"bitflags/serde",
"indexmap/serde",
]
spv-in = [
"dep:petgraph",
"dep:spirv",
]
spv-out = ["dep:spirv"]
wgsl-in = [
"dep:hexf-parse",
"dep:unicode-xid",
"compact",
]
wgsl-out = []