-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
20 lines (19 loc) · 865 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
[package]
name = "wgpu-raytracer"
version = "0.1.0"
edition = "2021"
[dependencies]
wgpu = { git = "https://github.com/gfx-rs/wgpu", rev = "1a643291c2e8854ba7e4f5445a4388202731bfa1" }
sdl2 = { version = "0.37.0", features = ["raw-window-handle"] }
nalgebra = { version = "0.33.2", features = ["serde-serialize"] }
nalgebra-glm = "0.19.0"
serde = { version = "1.0.215", features = ["derive"] }
serde_json = "1.0.133"
clap = { version = "4.5.21", features = ["derive"] }
tokio = { version = "1.41.1", features = ["full"] }
gltf = { version = "1.4.1", features = ["KHR_materials_emissive_strength",
"KHR_materials_ior",
"KHR_lights_punctual"] }
image = { version = "0.25.5", features = ["png" , "jpeg", "webp"] }
bytemuck = { version = "1.20.0", features = ["derive"] }
memmap2 = "0.9.5"