| [package] |
| name = "vello_sparse_shaders" |
| # When updating, also update the version in the workspace dependency in the root Cargo.toml |
| version = "0.0.1" |
| description = "Provide compilation of wgsl to glsl to support the WebGL `vello_hybrid` backend." |
| categories = ["rendering", "graphics"] |
| keywords = ["2d", "vector-graphics"] |
| edition.workspace = true |
| rust-version.workspace = true |
| license.workspace = true |
| repository.workspace = true |
| |
| [package.metadata.docs.rs] |
| all-features = true |
| # There are no platform specific docs. |
| default-target = "x86_64-unknown-linux-gnu" |
| targets = [] |
| |
| [dependencies] |
| naga = { version = "24.0.0", features = ["wgsl-in", "glsl-out"] } |
| |
| [build-dependencies] |
| naga = { version = "24.0.0", features = ["wgsl-in", "glsl-out"] } |
| |
| [lints] |
| workspace = true |