mirror of
https://github.com/italicsjenga/vello.git
synced 2025-01-09 12:21:31 +11:00
Update for Bevy 0.10 and other dependencies (#290)
This commit is contained in:
parent
fd6bfe91d6
commit
17096ad878
|
@ -54,3 +54,4 @@ wgpu = "0.15"
|
||||||
# Used for examples
|
# Used for examples
|
||||||
clap = "4.1.0"
|
clap = "4.1.0"
|
||||||
anyhow = "1.0"
|
anyhow = "1.0"
|
||||||
|
pollster = "0.3.0"
|
||||||
|
|
|
@ -10,5 +10,5 @@ repository.workspace = true
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
bevy = { git = "https://github.com/bevyengine/bevy", rev = "4fd092fbec07416fa9b1e2306f61231ae20315ac" }
|
bevy = "0.10"
|
||||||
vello = { path = "../../" }
|
vello = { path = "../../" }
|
||||||
|
|
|
@ -24,10 +24,10 @@ vello = { path = "../../", features = ["buffer_labels"] }
|
||||||
scenes = { path = "../scenes" }
|
scenes = { path = "../scenes" }
|
||||||
anyhow = { workspace = true }
|
anyhow = { workspace = true }
|
||||||
clap = { workspace = true, features = ["derive"] }
|
clap = { workspace = true, features = ["derive"] }
|
||||||
|
pollster = { workspace = true }
|
||||||
|
|
||||||
wgpu = { workspace = true }
|
wgpu = { workspace = true }
|
||||||
winit = "0.28.1"
|
winit = "0.28.1"
|
||||||
pollster = "0.2.5"
|
|
||||||
env_logger = "0.10.0"
|
env_logger = "0.10.0"
|
||||||
log = "0.4.17"
|
log = "0.4.17"
|
||||||
|
|
||||||
|
@ -38,7 +38,7 @@ notify-debouncer-mini = "0.2.1"
|
||||||
|
|
||||||
[target.'cfg(target_os = "android")'.dependencies]
|
[target.'cfg(target_os = "android")'.dependencies]
|
||||||
winit = { version = "0.28", features = ["android-native-activity"] }
|
winit = { version = "0.28", features = ["android-native-activity"] }
|
||||||
android_logger = "0.12.0"
|
android_logger = "0.13.0"
|
||||||
|
|
||||||
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
||||||
console_error_panic_hook = "0.1.7"
|
console_error_panic_hook = "0.1.7"
|
||||||
|
|
|
@ -13,4 +13,4 @@ repository.workspace = true
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
vello = { path = "../../" }
|
vello = { path = "../../" }
|
||||||
usvg = "0.28"
|
usvg = "0.29"
|
||||||
|
|
Loading…
Reference in a new issue