| [package] |
| name = "vello_api" |
| version.workspace = true |
| description = "Defines the public API types for Vello, providing a stable interface for CPU and Hybrid rendering implementations." |
| 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] |
| peniko = { workspace = true } |
| |
| [features] |
| default = ["std"] |
| std = ["peniko/std"] |
| libm = ["peniko/libm"] |
| simd = [] |
| |
| [lints] |
| workspace = true |