| [package] |
| name = "vello_common" |
| version.workspace = true |
| description = "Core data structures and utilities shared across the Vello rendering, including geometry processing and tiling logic." |
| 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 |
| |
| [dependencies] |
| vello_api = { workspace = true, default-features = true } |
| # for pico_svg |
| roxmltree = "0.20.0" |
| bytemuck = { workspace = true, features = [] } |
| skrifa = { workspace = true } |
| |
| [features] |
| simd = ["vello_api/simd"] |
| |
| [lints] |
| workspace = true |