Enable wasm-bindgen feature of instant crate

This commit is contained in:
Arman Uguray 2023-04-23 16:00:01 -07:00
parent 4642fa024f
commit bb117da352
3 changed files with 3 additions and 2 deletions

View file

@ -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"

View file

@ -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"

View file

@ -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 }