mirror of
https://github.com/gfx-rs/wgpu.git
synced 2024-11-22 06:44:14 +00:00
06e9876adf
* Move to combined examples * Fix paths * Curtail some tests * Format * Clippy * Fix wasm * Refactor main for wasm * Style sheet * Readme * Lock
40 lines
716 B
TOML
40 lines
716 B
TOML
[package]
|
|
name = "naga-cli"
|
|
version = "0.14.0"
|
|
authors = ["gfx-rs developers"]
|
|
edition = "2021"
|
|
description = "Shader translation command line tool"
|
|
repository = "https://github.com/gfx-rs/wgpu/tree/trunk/naga-cli"
|
|
keywords = ["shader", "SPIR-V", "GLSL", "MSL"]
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
[[bin]]
|
|
name = "naga"
|
|
path = "src/bin/naga.rs"
|
|
test = false
|
|
|
|
[dependencies]
|
|
bincode = "1"
|
|
log = "0.4"
|
|
codespan-reporting = "0.11"
|
|
env_logger = "0.10"
|
|
argh = "0.1.5"
|
|
|
|
[dependencies.naga]
|
|
version = "0.14"
|
|
path = "../naga"
|
|
features = [
|
|
"compact",
|
|
"wgsl-in",
|
|
"wgsl-out",
|
|
"glsl-in",
|
|
"glsl-out",
|
|
"spv-in",
|
|
"spv-out",
|
|
"msl-out",
|
|
"hlsl-out",
|
|
"dot-out",
|
|
"serialize",
|
|
"deserialize",
|
|
]
|