wgpu/Cargo.toml

88 lines
2.8 KiB
TOML
Raw Normal View History

[package]
2020-02-25 19:00:51 +00:00
name = "naga"
2023-04-19 20:59:00 +00:00
version = "0.12.0"
authors = ["Naga Developers"]
edition = "2021"
2020-02-27 04:28:18 +00:00
description = "Shader translation infrastructure"
homepage = "https://github.com/gfx-rs/naga"
repository = "https://github.com/gfx-rs/naga"
2021-04-01 13:34:07 +00:00
keywords = ["shader", "SPIR-V", "GLSL", "MSL"]
2020-06-18 20:51:51 +00:00
license = "MIT OR Apache-2.0"
2021-06-03 16:06:42 +00:00
exclude = ["bin/**/*", "tests/**/*", "Cargo.lock", "target/**/*"]
resolver = "2"
2022-11-18 16:29:49 +00:00
rust-version = "1.63"
2021-04-01 13:34:07 +00:00
[package.metadata.docs.rs]
all-features = true
[profile.release]
panic = "abort"
[profile.dev]
panic = "abort"
[features]
default = []
clone = []
2021-03-02 06:28:32 +00:00
dot-out = []
glsl-in = ["pp-rs"]
glsl-out = []
2020-09-14 14:27:05 +00:00
msl-out = []
2023-06-01 13:40:47 +00:00
serialize = ["serde", "bitflags/serde", "indexmap/serde-1"]
deserialize = ["serde", "bitflags/serde", "indexmap/serde-1"]
arbitrary = ["dep:arbitrary", "bitflags/arbitrary", "indexmap/arbitrary"]
spv-in = ["petgraph", "spirv"]
2020-09-14 14:27:05 +00:00
spv-out = ["spirv"]
wgsl-in = ["codespan-reporting", "hexf-parse", "termcolor", "unicode-xid"]
2021-04-19 04:23:27 +00:00
wgsl-out = []
hlsl-out = []
span = ["codespan-reporting", "termcolor"]
validate = []
2022-02-16 00:23:30 +00:00
[[bench]]
name = "criterion"
harness = false
2022-01-13 23:57:57 +00:00
[dependencies]
2022-04-16 13:09:56 +00:00
arbitrary = { version = "1.0.2", features = ["derive"], optional = true }
2023-06-01 13:40:47 +00:00
bitflags = "2"
2022-01-13 23:57:57 +00:00
bit-set = "0.5"
termcolor = { version = "1.0.4", optional = true }
2022-04-16 13:09:56 +00:00
# remove termcolor dep when updating to the next version of codespan-reporting
# termcolor minimum version was wrong and was fixed in
# https://github.com/brendanzab/codespan/commit/e99c867339a877731437e7ee6a903a3d03b5439e
2022-01-13 23:57:57 +00:00
codespan-reporting = { version = "0.11.0", optional = true }
rustc-hash = "1.1.0"
indexmap = { version = "1.9.2", features = ["std"] }
2022-01-13 23:57:57 +00:00
log = "0.4"
num-traits = "0.2"
spirv = { version = "0.2", optional = true }
thiserror = "1.0.21"
2022-04-16 13:09:56 +00:00
serde = { version = "1.0.103", features = ["derive"], optional = true }
2022-01-13 23:57:57 +00:00
petgraph = { version ="0.6", optional = true }
pp-rs = { version = "0.2.1", optional = true }
hexf-parse = { version = "0.2.1", optional = true }
unicode-xid = { version = "0.2.3", optional = true }
2022-01-13 23:57:57 +00:00
[dev-dependencies]
2022-02-16 01:01:12 +00:00
bincode = "1"
2022-02-16 03:07:45 +00:00
criterion = { version = "0.3", features = [] }
2021-04-14 18:20:48 +00:00
diff = "0.1"
2023-04-03 20:01:16 +00:00
env_logger = "0.9"
hlsl-snapshots = { path = "./hlsl-snapshots"}
# Require at least version 0.7.1 of ron, this version changed how floating points are
# serialized by forcing them to always have the decimal part, this makes it backwards
# incompatible with our tests because we do a syntatic diff and not a semantic one.
ron = "~0.7.1"
2023-04-03 20:01:16 +00:00
rspirv = { version = "0.11", git = "https://github.com/gfx-rs/rspirv", rev = "b969f175d5663258b4891e44b76c1544da9661ab" }
2020-08-17 03:49:48 +00:00
serde = { version = "1.0", features = ["derive"] }
spirv = { version = "0.2", features = ["deserialize"] }
[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"]