mirror of
https://github.com/italicsjenga/vello.git
synced 2025-01-09 20:31:29 +11:00
Enable wasm-bindgen feature of instant crate
This commit is contained in:
parent
4642fa024f
commit
bb117da352
|
@ -60,4 +60,5 @@ wgpu = "0.16"
|
||||||
# Used for examples
|
# Used for examples
|
||||||
clap = "4.1.0"
|
clap = "4.1.0"
|
||||||
anyhow = "1.0"
|
anyhow = "1.0"
|
||||||
|
instant = { version = "0.1.12", features = [ "wasm-bindgen" ] }
|
||||||
pollster = "0.3.0"
|
pollster = "0.3.0"
|
||||||
|
|
|
@ -16,7 +16,7 @@ vello_svg = { path = "../../integrations/vello_svg" }
|
||||||
anyhow = { workspace = true }
|
anyhow = { workspace = true }
|
||||||
clap = { workspace = true, features = ["derive"] }
|
clap = { workspace = true, features = ["derive"] }
|
||||||
image = "0.24.5"
|
image = "0.24.5"
|
||||||
instant = "0.1.12"
|
instant = { workspace = true }
|
||||||
|
|
||||||
# Used for the `download` command
|
# Used for the `download` command
|
||||||
byte-unit = "4.0"
|
byte-unit = "4.0"
|
||||||
|
|
|
@ -24,7 +24,7 @@ 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"] }
|
||||||
instant = "0.1.12"
|
instant = { workspace = true }
|
||||||
pollster = { workspace = true }
|
pollster = { workspace = true }
|
||||||
|
|
||||||
wgpu = { workspace = true }
|
wgpu = { workspace = true }
|
||||||
|
|
Loading…
Reference in a new issue