16 lines
368 B
TOML
16 lines
368 B
TOML
[package]
|
|
name = "raytracing3"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
default-run = "raytracing3"
|
|
|
|
[dependencies]
|
|
bytemuck = { version = "1.21.0", features = ["derive"] }
|
|
glam = { version = "0.29.2", features = ["bytemuck"] }
|
|
pollster = "0.4.0"
|
|
rand = "0.8.5"
|
|
rand_distr = { version = "0.4.3", features = ["std_math"] }
|
|
rand_pcg = "0.3.1"
|
|
wgpu = "23.0.1"
|
|
winit = "0.30.6"
|