vello/Cargo.toml

37 lines
718 B
TOML
Raw Normal View History

[workspace]
resolver = "2"
2023-02-01 03:07:03 +11:00
members = [
"examples/with_winit",
"examples/with_bevy",
"examples/run_wasm",
"examples/usvg_viewer",
]
[workspace.package]
edition = "2021"
version = "0.1.0"
2023-02-01 03:07:03 +11:00
[workspace.dependencies]
wgpu = "0.15"
[package]
name = "vello"
version = "0.1.0"
license = "MIT/Apache-2.0"
edition = "2021"
[dependencies]
2023-02-01 03:07:03 +11:00
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"
2023-01-18 04:48:26 +11:00
moscato = { git = "https://github.com/dfrg/pinot", rev = "59db153" }
2023-01-18 05:00:19 +11:00
peniko = { git = "https://github.com/linebender/peniko", rev = "8cb710f" }
[features]
hot_reload = []
buffer_labels = []