mirror of
https://github.com/gfx-rs/wgpu.git
synced 2026-04-22 03:02:01 -04:00
* move bin/naga.rs to a separate crate * enable all shader languages for naga binary * [naga-cli] add env logger * [naga-cli] remove unneccessary code * [naga-cli]enable glsl-validate feature * move naga-cli to cli, add trailing newline * remove commented env_logger dependency
21 lines
587 B
TOML
21 lines
587 B
TOML
[package]
|
|
name = "naga-cli"
|
|
version = "0.4.0"
|
|
authors = ["Naga Developers"]
|
|
edition = "2018"
|
|
description = "Shader translation command line tool"
|
|
homepage = "https://github.com/gfx-rs/naga"
|
|
repository = "https://github.com/gfx-rs/naga"
|
|
keywords = ["shader", "SPIR-V", "GLSL", "MSL"]
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
[[bin]]
|
|
name = "naga"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
naga = { path = "../", features = ["wgsl-in", "wgsl-out", "glsl-in", "glsl-out", "spv-in", "spv-out", "msl-out", "hlsl-out", "dot-out", "glsl-validate"] }
|
|
log = "0.4"
|
|
codespan-reporting = "0.11"
|
|
env_logger = "0.8"
|