mirror of
https://github.com/italicsjenga/vello.git
synced 2025-01-10 04:31:30 +11:00
18 lines
405 B
TOML
18 lines
405 B
TOML
[package]
|
|
name = "vello_shaders"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[features]
|
|
default = ["compile", "wgsl", "msl"]
|
|
compile = ["naga"]
|
|
wgsl = []
|
|
msl = []
|
|
|
|
[dependencies]
|
|
naga = { git = "https://github.com/gfx-rs/naga", features = ["wgsl-in", "msl-out", "validate"], optional = true }
|
|
|
|
[build-dependencies]
|
|
naga = { git = "https://github.com/gfx-rs/naga", features = ["wgsl-in", "msl-out", "validate"] }
|
|
|