vello/examples/with_winit/Cargo.toml
Daniel McNab eec111c633
Support click and drag for svgs, as well as scene fragment caching (#244)
* Support caching the image, and click and drag motion

* Remove debug print

* Clean up examples to have command line parsing

* Address review comments
2023-01-13 19:30:08 +00:00

24 lines
599 B
TOML

[package]
name = "with_winit"
description = "An example using vello to render to a winit window"
version.workspace = true
edition.workspace = true
publish = false
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
wgpu = "0.14"
vello = { path = "../../" }
winit = "0.27.5"
pollster = "0.2.5"
# for picosvg
roxmltree = "0.13"
clap = { version = "4.1.0", features = ["derive"] }
[target.'cfg(target_arch = "wasm32")'.dependencies]
console_error_panic_hook = "0.1.7"
console_log = "0.2"
wasm-bindgen-futures = "0.4.33"
web-sys = "0.3.60"