vello/Cargo.toml
Chad Brokaw 82391534c0 small fixes
* make SimpleText::add_run accept glyph_transform and style parameters so it doesn't unconditionally do oblique strokes
* replace fill/stroke methods on DrawGlyphs with a single draw method that accepts either fill or stroke styles
* update peniko rev to access the new style types used above
* for now, change glyph cache to only cache non-zero fills. Prior to this, style was ignored in the key which could lead to incorrect rendering.
2023-02-24 16:13:48 -05:00

56 lines
1.2 KiB
TOML

[workspace]
resolver = "2"
members = [
"integrations/vello_svg",
"examples/headless",
"examples/with_winit",
"examples/with_bevy",
"examples/run_wasm",
"examples/scenes",
]
[workspace.package]
edition = "2021"
version = "0.0.1"
license = "MIT/Apache-2.0"
# homepage = "https://vello.dev" - Domain owned by us, but unused at present
# rust-version =
repository = "https://github.com/linebender/vello"
[package]
name = "vello"
description = "An experimental GPU compute-centric 2D renderer"
categories = ["rendering", "graphics"]
keywords = ["2d", "vector-graphics"]
# This crate is intended for publishing, but not ready yet
publish = false
version.workspace = true
license.workspace = true
edition.workspace = true
repository.workspace = true
[features]
hot_reload = []
buffer_labels = []
[dependencies]
wgpu = { workspace = true }
raw-window-handle = "0.5"
futures-intrusive = "0.5.0"
parking_lot = "0.12"
bytemuck = { version = "1.12.1", features = ["derive"] }
smallvec = "1.8.0"
moscato = { git = "https://github.com/dfrg/pinot", rev = "59db153" }
peniko = { git = "https://github.com/linebender/peniko", rev = "882882c" }
[workspace.dependencies]
wgpu = "0.15"
# Used for examples
clap = "4.1.0"
anyhow = "1.0"