mirror of
https://github.com/italicsjenga/vello.git
synced 2025-01-09 20:31:29 +11:00
34 lines
830 B
TOML
34 lines
830 B
TOML
[workspace]
|
|
resolver = "2"
|
|
|
|
members = ["examples/with_winit", "examples/with_bevy", "examples/run_wasm"]
|
|
|
|
[workspace.package]
|
|
edition = "2021"
|
|
version = "0.1.0"
|
|
|
|
[patch.crates-io]
|
|
# Required for metal support to work on wgpu
|
|
# TODO: remove when wgpu is upgraded to 0.15
|
|
naga = { git = "https://github.com/gfx-rs/naga", rev = "ddcd5d3121150b2b1beee6e54e9125ff31aaa9a2" }
|
|
|
|
[package]
|
|
name = "vello"
|
|
version = "0.1.0"
|
|
license = "MIT/Apache-2.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
wgpu = "0.14"
|
|
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 = "8cb710f" }
|
|
|
|
[features]
|
|
hot_reload = []
|
|
buffer_labels = []
|