-
Notifications
You must be signed in to change notification settings - Fork 8
/
Cargo.toml
35 lines (34 loc) · 919 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
[workspace]
resolver = "2"
members = [
"crates/wasi-frame-buffer-wasmtime",
"crates/wasi-surface-wasmtime",
"crates/wasi-graphics-context-wasmtime",
"crates/wasi-webgpu-wasmtime",
"examples/apps/rectangle_frame_buffer",
"examples/apps/triangle",
"examples/apps/skybox",
"examples/apps/hello_compute",
"examples/runtime",
]
[workspace.dependencies]
clap = { version = "4.3", features = ["derive"] }
wasmtime = { version = "21.0", features = ['component-model'] }
wasmtime-wasi = "21.0"
anyhow = "1.0"
winit = { version = "0.30", features = [ "android-native-activity" ] }
wgpu-core = "22"
wgpu-types = "22"
raw-window-handle = "0.6"
async-trait = "0.1"
rand = "0.8"
futures = "0.3"
tokio = { version = "1.35", features = ["full"] }
softbuffer = "0.4"
env_logger = "0.11"
log = "0.4"
async-broadcast = "0.7"
oneshot = "0.1"
wit-bindgen = "0.26"
callback-future = "0.1"
bytemuck = "1"