| [package] |
| name = "vello_sparse_tests" |
| description = "The test suite for vello_cpu and vello_hybrid" |
| categories = ["rendering", "graphics"] |
| keywords = ["2d", "vector-graphics"] |
| edition.workspace = true |
| rust-version.workspace = true |
| license.workspace = true |
| repository.workspace = true |
| publish = false |
| autotests = false |
| |
| [[test]] |
| name = "tests" |
| path = "tests/mod.rs" |
| |
| [dependencies] |
| vello_api = { workspace = true } |
| vello_common = { workspace = true } |
| vello_cpu = { workspace = true } |
| vello_hybrid = { workspace = true } |
| wgpu = { workspace = true } |
| pollster = { workspace = true } |
| vello_dev_macros = { workspace = true } |
| bytemuck = { workspace = true } |
| oxipng = { workspace = true, features = ["freestanding", "parallel"] } |
| image = { workspace = true, features = ["png"] } |
| skrifa = { workspace = true } |
| smallvec = { workspace = true } |
| |
| [target.'cfg(target_arch = "wasm32")'.dependencies] |
| wasm-bindgen-test = "0.3.50" |
| web-sys = { version = "0.3.77", features = [ |
| "HtmlCanvasElement", |
| "WebGl2RenderingContext", |
| "Document", |
| "Window", |
| "Element", |
| "HtmlElement", |
| "HtmlImageElement", |
| "Blob", |
| "BlobPropertyBag", |
| "Url", |
| ] } |
| wasm-bindgen = "0.2.100" |
| |
| [features] |
| webgl = ["vello_hybrid/webgl"] |
| |
| [lints] |
| workspace = true |