2021-06-12 23:24:01 +00:00
|
|
|
[package]
|
|
|
|
name = "naga-cli"
|
2024-01-17 19:42:11 +00:00
|
|
|
version = "0.19.0"
|
2023-10-27 04:15:51 +00:00
|
|
|
authors = ["gfx-rs developers"]
|
2022-10-25 15:44:17 +00:00
|
|
|
edition = "2021"
|
2021-06-12 23:24:01 +00:00
|
|
|
description = "Shader translation command line tool"
|
2023-10-27 04:15:51 +00:00
|
|
|
repository = "https://github.com/gfx-rs/wgpu/tree/trunk/naga-cli"
|
2021-06-12 23:24:01 +00:00
|
|
|
keywords = ["shader", "SPIR-V", "GLSL", "MSL"]
|
|
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
|
2023-11-23 10:26:42 +00:00
|
|
|
[[bin]]
|
|
|
|
name = "naga"
|
|
|
|
path = "src/bin/naga.rs"
|
2024-01-08 06:05:23 +00:00
|
|
|
# This _must_ be false, as this conflicts with `naga`'s docs.
|
|
|
|
#
|
|
|
|
# See https://github.com/gfx-rs/wgpu/issues/4997
|
|
|
|
doc = false
|
2023-11-23 10:26:42 +00:00
|
|
|
test = false
|
|
|
|
|
2021-06-12 23:24:01 +00:00
|
|
|
[dependencies]
|
2022-02-16 00:00:00 +00:00
|
|
|
bincode = "1"
|
2021-06-12 23:24:01 +00:00
|
|
|
log = "0.4"
|
|
|
|
codespan-reporting = "0.11"
|
2024-03-14 17:00:43 +00:00
|
|
|
env_logger = "0.11"
|
2021-07-20 15:55:23 +00:00
|
|
|
argh = "0.1.5"
|
2023-09-07 20:22:44 +00:00
|
|
|
|
|
|
|
[dependencies.naga]
|
2024-01-17 19:42:11 +00:00
|
|
|
version = "0.19"
|
2023-10-25 20:51:36 +00:00
|
|
|
path = "../naga"
|
2023-09-07 20:22:44 +00:00
|
|
|
features = [
|
|
|
|
"compact",
|
|
|
|
"wgsl-in",
|
|
|
|
"wgsl-out",
|
|
|
|
"glsl-in",
|
|
|
|
"glsl-out",
|
|
|
|
"spv-in",
|
|
|
|
"spv-out",
|
|
|
|
"msl-out",
|
|
|
|
"hlsl-out",
|
|
|
|
"dot-out",
|
|
|
|
"serialize",
|
2023-10-25 17:16:06 +00:00
|
|
|
"deserialize",
|
2023-09-07 20:22:44 +00:00
|
|
|
]
|