1
0
raytracing-the-next-week/Cargo.toml
Ishan Jain 1a7b674ac4
Completed Motion Blur Image
Moving to a different format for the project. Instead of having
a generic `Demo` trait implemented by all the demos amongst which
one can switch by pressing 1-0 keys, We'll just have one demo only.
And, To switch between different images, They can checkout to
respective branch
2020-04-17 21:58:03 +05:30

15 lines
271 B
TOML

[package]
name = "rtnw"
version = "0.1.0"
authors = ["ishanjain28 <ishanjain28@gmail.com>"]
edition = "2018"
[features]
gui = ["sdl2"]
[dependencies]
sdl2 = { version = "0.33.0", optional = true }
rand = { version = "0.7.3", features = ["small_rng"] }
rayon = "1.3.0"