2022-11-27 06:27:19 +11:00
|
|
|
[package]
|
2023-01-05 20:32:09 +11:00
|
|
|
name = "with_winit"
|
2023-01-14 06:30:08 +11:00
|
|
|
description = "An example using vello to render to a winit window"
|
2022-12-09 04:43:09 +11:00
|
|
|
version.workspace = true
|
|
|
|
edition.workspace = true
|
2022-11-28 03:02:16 +11:00
|
|
|
publish = false
|
2022-11-27 06:27:19 +11:00
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2023-02-01 03:07:03 +11:00
|
|
|
wgpu = { workspace = true }
|
2023-01-17 04:16:45 +11:00
|
|
|
vello = { path = "../../", features = ["buffer_labels"] }
|
2023-02-03 21:22:39 +11:00
|
|
|
scenes = { path = "../scenes" }
|
|
|
|
anyhow = "1.0"
|
2022-11-27 06:27:19 +11:00
|
|
|
winit = "0.27.5"
|
|
|
|
pollster = "0.2.5"
|
|
|
|
# for picosvg
|
|
|
|
roxmltree = "0.13"
|
2023-01-14 06:30:08 +11:00
|
|
|
clap = { version = "4.1.0", features = ["derive"] }
|
2023-01-22 07:29:23 +11:00
|
|
|
env_logger = "0.10.0"
|
2022-11-30 14:35:46 +11:00
|
|
|
|
2023-01-17 04:24:48 +11:00
|
|
|
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
|
|
|
|
vello = { path = "../../", features = ["hot_reload"] }
|
|
|
|
notify-debouncer-mini = "0.2.1"
|
|
|
|
|
2022-11-30 14:35:46 +11:00
|
|
|
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
|
|
|
console_error_panic_hook = "0.1.7"
|
|
|
|
console_log = "0.2"
|
|
|
|
wasm-bindgen-futures = "0.4.33"
|
2022-12-09 04:43:09 +11:00
|
|
|
web-sys = "0.3.60"
|