blob: 1e17d1a5e6230749e3431afa8c9a91ab661556e6 [file] [log] [blame] [edit]
[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 }
png = { workspace = true, optional = true }
[features]
default = ["std", "png"]
std = ["peniko/std"]
libm = ["peniko/libm"]
png = ["std", "dep:png"]
simd = []
[lints]
workspace = true