| [package] |
| name = "vello_hybrid" |
| version.workspace = true |
| description = "A hybrid CPU/GPU renderer for Vello, balancing computation between CPU and GPU for efficiency." |
| categories = ["rendering", "graphics"] |
| keywords = ["2d", "vector-graphics"] |
| edition.workspace = true |
| rust-version.workspace = true |
| license.workspace = true |
| repository.workspace = true |
| # Prevent accidental publishing until the initial release |
| publish = false |
| |
| [lints] |
| workspace = true |
| |
| [dependencies] |
| vello_common = { workspace = true } |
| bytemuck = { workspace = true, features = ["derive"] } |
| wgpu = { workspace = true } |
| |
| [dev-dependencies] |
| winit = "0.30.9" |
| skrifa = { workspace = true } |
| parley = { version = "0.3.0", default-features = false, features = ["std"] } |
| pollster = { workspace = true } |
| png = "0.17.14" |
| roxmltree = "0.20.0" |