forked from jinleili/wgpu-in-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
39 lines (34 loc) · 907 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
36
37
38
39
[workspace]
resolver = "3"
members = ["wgpu-in-app", "app-surface", "cargo-so"]
default-members = ["wgpu-in-app"]
[workspace.package]
edition = "2024"
rust-version = "1.85"
[workspace.dependencies]
bytemuck = { version = "1.21", features = ["derive", "min_const_generics"] }
cfg-if = "1.0"
glam = "0.29"
log = "0.4"
noise = { version = "0.8", default-features = false }
pollster = "0.4"
rand = "0.8"
wgpu = "24"
# wgpu = { git = "https://github.com/jinleili/wgpu", branch="visionOS" }
winit = { version = "0.30" }
raw-window-handle = "0.6"
env_logger = "0.11"
# macOS, iOS
libc = "0.2"
objc = "0.2.7"
core-graphics-types = "0.2"
# android target
android_logger = "0.14"
jni = "0.21"
jni_fn = "0.1"
ndk-sys = "0.6"
# wasm target
web-sys = { version = "0.3.77", default-features = false }
wasm-bindgen = "0.2.100"
js-sys = { version = "0.3.77", default-features = false }
wasm-bindgen-futures = "0.4.50"