-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
33 lines (28 loc) · 893 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
[workspace]
members = ["crates/wgsl-parse", "crates/wgsl-parse-macros", "crates/wesl", "crates/wesl-test"]
[workspace.package]
version = "0.0.2"
edition = "2021"
authors = ["Mathis Brossier <[email protected]>"]
repository = "https://github.com/k2d222/wgsl-tools"
license = "MIT"
[package]
name = "wgsl-tools"
description = "Various tools to parse, verify, evaluate and modify wgsl shader source."
documentation = "https://docs.rs/wgsl-tools"
version.workspace = true
edition.workspace = true
authors.workspace = true
repository.workspace = true
license.workspace = true
[dependencies]
clap = { version = "4.5.11", features = ["derive"] }
wgsl-parse = { path = "crates/wgsl-parse" }
wesl = { path = "crates/wesl" }
thiserror = "1.0.63"
naga = { version = "23.0.0", optional = true, features = ["wgsl-in"] }
[[bin]]
name = "wesl"
path = "src/main.rs"
[features]
default = ["naga"]