project: justify every dependency
This commit is contained in:
parent
ae3931e796
commit
7526e41938
|
@ -7,5 +7,8 @@ edition = "2018"
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
|
# Linear algebra basic operations and types
|
||||||
nalgebra = "0.20"
|
nalgebra = "0.20"
|
||||||
|
|
||||||
|
# High performance quicksort/quickselect
|
||||||
pdqselect = "0.1.0"
|
pdqselect = "0.1.0"
|
||||||
|
|
|
@ -19,24 +19,44 @@ name = "pathtracer"
|
||||||
path = "src/main.rs"
|
path = "src/main.rs"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
|
# Our own BVH implementation
|
||||||
beevee = { path = "../beevee" }
|
beevee = { path = "../beevee" }
|
||||||
|
|
||||||
|
# Macro to implement arithmetic operators automagically
|
||||||
derive_more = "0.99.3"
|
derive_more = "0.99.3"
|
||||||
|
|
||||||
|
# Transform interfaces into enums for better performance than dynamic dispatch
|
||||||
enum_dispatch = "0.2.1"
|
enum_dispatch = "0.2.1"
|
||||||
|
|
||||||
|
# Save an image to PNG
|
||||||
image = "0.23.0"
|
image = "0.23.0"
|
||||||
|
|
||||||
|
# Random implementation, not part of the standard library in Rust
|
||||||
rand = "0.7"
|
rand = "0.7"
|
||||||
|
|
||||||
|
# Parallelism utility functions
|
||||||
rayon = "1.3.0"
|
rayon = "1.3.0"
|
||||||
|
|
||||||
|
# YAML deserialization
|
||||||
serde_yaml = "0.8"
|
serde_yaml = "0.8"
|
||||||
|
|
||||||
|
# Command-line argument parsing utilities
|
||||||
structopt = "0.3"
|
structopt = "0.3"
|
||||||
|
|
||||||
|
# OBJ format parser
|
||||||
tobj = "1.0"
|
tobj = "1.0"
|
||||||
|
|
||||||
|
# Fancy terminal progress bar
|
||||||
[dependencies.indicatif]
|
[dependencies.indicatif]
|
||||||
version = "0.14"
|
version = "0.14"
|
||||||
features = ["with_rayon"]
|
features = ["with_rayon"]
|
||||||
|
|
||||||
|
# Linear algebra basic operations and types
|
||||||
[dependencies.nalgebra]
|
[dependencies.nalgebra]
|
||||||
version = "0.20.0"
|
version = "0.20.0"
|
||||||
features = ["serde-serialize"]
|
features = ["serde-serialize"]
|
||||||
|
|
||||||
|
# YAML deserialization
|
||||||
[dependencies.serde]
|
[dependencies.serde]
|
||||||
version = "1.0"
|
version = "1.0"
|
||||||
features = ["derive"]
|
features = ["derive"]
|
||||||
|
|
Loading…
Reference in a new issue