-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
25 lines (23 loc) · 856 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
[package]
name = "gpu-basics"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.86"
bytemuck = { version = "1.16.0", features = ["derive"] }
egui = { git = "https://github.com/emilk/egui", rev = "814ad07" }
egui-wgpu = { git = "https://github.com/emilk/egui", rev = "814ad07", features = [
"winit",
] }
egui-winit = { git = "https://github.com/emilk/egui", rev = "814ad07" }
encase = { version = "0.8.0", features = ["nalgebra"] }
fnv = "1.0.7"
image = "0.25.1"
naga_oil = "0.14.0"
nalgebra = { version = "0.32.6", features = ["bytemuck"] }
rand = "0.8.5"
tobj = "4.0.2"
tokio = { version = "1.38.0", features = ["full"] }
wgpu = { version = "0.20.1", features = ["wgc", "naga-ir"] }
winit = { version = "0.29.15", features = ["rwh_05"] }