-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
41 lines (36 loc) · 1.03 KB
/
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
34
35
36
37
38
39
40
41
[package]
name = "include-wgsl-oil"
version = "0.2.8"
edition = "2021"
license = "MIT"
description = "Includes a WGSL file with the `naga-oil` preprocessor. "
homepage = "https://github.com/LucentFlux/include-wgsl-oil"
repository = "https://github.com/LucentFlux/include-wgsl-oil"
readme = "README.md"
keywords = ["gamedev", "graphics", "wgsl", "wgpu", "shader"]
categories = ["game-development", "graphics"]
include = ["/Cargo.toml", "/LICENSE", "/README.md", "/src/**"]
[dependencies]
syn = { version = "2.0", features = ["full"] }
naga = { version = "22.0", features = ["wgsl-in", "wgsl-out"] }
naga_oil = "0.15"
naga-to-tokenstream = "0.7"
proc-macro2 = "1.0"
quote = "1.0"
glob = "0.3"
pathdiff = "0.2"
regex = "1.9"
lazy_static = "1.5"
daggy = "0.8"
# Try to get cargo to match versions with naga and naga_oil by having a huge range
data-encoding = "2"
[dev-dependencies]
encase = {version = "0.9", features = ["glam"]}
glam = "0.28"
[lib]
proc-macro = true
[features]
minify = ["naga-to-tokenstream/minify"]
glam = []
naga = []
encase = []