1
0
raytracing-the-next-week/Cargo.toml
Ishan Jain 9d82129891 can create a stripped/basic version of cornell box
1. Refactored the project
2. Changed src/shapes/rectangle.rs to make it easy to create rectangles
   aligned with any(X/Y/Z) Axis.
2021-04-07 22:15:10 +05:30

26 lines
416 B
TOML

[package]
authors = ["ishanjain28 <ishanjain28@gmail.com>"]
edition = "2018"
name = "rtnw"
version = "0.1.0"
[dependencies]
num-traits = "*"
rayon = "1.5.0"
[dependencies.image]
default-features = false
features = ["jpeg", "png"]
version = "0.23.14"
[dependencies.rand]
features = ["small_rng"]
version = "0.8.3"
[dependencies.sdl2]
optional = true
version = "0.34.0"
[features]
default = ["gui"]
gui = ["sdl2"]