2018-09-13 01:28:55 +00:00
|
|
|
[package]
|
2020-02-25 19:00:51 +00:00
|
|
|
name = "naga"
|
2023-04-19 20:59:00 +00:00
|
|
|
version = "0.12.0"
|
2021-01-30 00:41:19 +00:00
|
|
|
authors = ["Naga Developers"]
|
2022-10-25 15:44:17 +00:00
|
|
|
edition = "2021"
|
2020-02-27 04:28:18 +00:00
|
|
|
description = "Shader translation infrastructure"
|
|
|
|
homepage = "https://github.com/gfx-rs/naga"
|
2022-10-06 23:39:41 +00:00
|
|
|
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/**/*"]
|
2021-06-12 23:24:01 +00:00
|
|
|
resolver = "2"
|
2022-11-18 16:29:49 +00:00
|
|
|
rust-version = "1.63"
|
2018-09-13 01:28:55 +00:00
|
|
|
|
2021-04-01 13:34:07 +00:00
|
|
|
[package.metadata.docs.rs]
|
|
|
|
all-features = true
|
|
|
|
|
2021-12-27 01:01:49 +00:00
|
|
|
[profile.release]
|
|
|
|
panic = "abort"
|
|
|
|
|
|
|
|
[profile.dev]
|
|
|
|
panic = "abort"
|
|
|
|
|
2020-06-09 17:43:16 +00:00
|
|
|
[features]
|
2020-07-05 05:35:28 +00:00
|
|
|
default = []
|
2022-08-16 10:45:19 +00:00
|
|
|
clone = []
|
2021-03-02 06:28:32 +00:00
|
|
|
dot-out = []
|
2021-04-25 15:47:30 +00:00
|
|
|
glsl-in = ["pp-rs"]
|
2021-09-29 16:24:34 +00:00
|
|
|
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"]
|
2021-09-10 15:51:05 +00:00
|
|
|
spv-in = ["petgraph", "spirv"]
|
2020-09-14 14:27:05 +00:00
|
|
|
spv-out = ["spirv"]
|
2022-07-23 04:46:28 +00:00
|
|
|
wgsl-in = ["codespan-reporting", "hexf-parse", "termcolor", "unicode-xid"]
|
2021-04-19 04:23:27 +00:00
|
|
|
wgsl-out = []
|
2021-04-11 15:36:26 +00:00
|
|
|
hlsl-out = []
|
2022-07-23 04:46:28 +00:00
|
|
|
span = ["codespan-reporting", "termcolor"]
|
2021-10-05 19:11:32 +00:00
|
|
|
validate = []
|
2018-09-13 01:28:55 +00:00
|
|
|
|
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"
|
2022-07-23 04:46:28 +00:00
|
|
|
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"
|
2023-01-31 13:22:43 +00:00
|
|
|
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 }
|
2022-05-02 13:28:56 +00:00
|
|
|
unicode-xid = { version = "0.2.3", optional = true }
|
2022-01-13 23:57:57 +00:00
|
|
|
|
2018-09-13 01:28:55 +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"
|
2023-07-07 23:33:48 +00:00
|
|
|
hlsl-snapshots = { path = "./hlsl-snapshots"}
|
2022-06-15 19:17:59 +00:00
|
|
|
# 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"] }
|
2021-08-18 04:11:14 +00:00
|
|
|
spirv = { version = "0.2", features = ["deserialize"] }
|
2021-06-12 23:24:01 +00:00
|
|
|
|
|
|
|
[workspace]
|
|
|
|
members = [".", "cli"]
|
2021-06-16 16:45:13 +00:00
|
|
|
|
|
|
|
# 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"]
|