[package]
name = "vello_api"
version = "0.0.7"
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
[dependencies]
bytemuck = { workspace = true, features = [] }
peniko = { workspace = true, features = ["bytemuck"] }
png = { workspace = true, optional = true }
[features]
default = ["std", "png"]
std = ["peniko/std"]
libm = ["peniko/libm"]
png = ["std", "dep:png"]
simd = []
[lints]
workspace = true