mirror of
https://github.com/italicsjenga/vello.git
synced 2025-01-09 20:31:29 +11:00
21 lines
473 B
TOML
21 lines
473 B
TOML
[package]
|
|
name = "vello_shaders"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
license.workspace = true
|
|
|
|
[features]
|
|
default = ["compile", "wgsl", "msl"]
|
|
compile = ["naga", "thiserror"]
|
|
wgsl = []
|
|
msl = []
|
|
|
|
[dependencies]
|
|
naga = { version = "0.12", features = ["wgsl-in", "msl-out", "validate"], optional = true }
|
|
thiserror = { version = "1.0.40", optional = true }
|
|
|
|
[build-dependencies]
|
|
naga = { version = "0.12", features = ["wgsl-in", "msl-out", "validate"] }
|
|
thiserror = "1.0.40"
|
|
|