pathtracer/Cargo.toml

39 lines
731 B
TOML
Raw Normal View History

[package]
name = "pathtracer"
version = "0.1.0"
authors = [
"Bruno BELANYI <brunobelanyi@gmail.com>",
"Antoine Martin <antoine97.martin@gmail.com>"
]
edition = "2018"
description = "A pathtracer written in Rust"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "pathtracer"
path = "src/lib.rs"
[[bin]]
name = "pathtracer"
path = "src/main.rs"
[dependencies]
2020-03-16 14:30:38 +01:00
bvh = "0.3.2"
2020-03-16 16:07:21 +01:00
derive_more = "0.99.3"
enum_dispatch = "0.2.1"
2020-03-17 23:25:41 +01:00
image = "0.23.0"
2020-03-19 00:15:56 +01:00
indicatif = "0.14.0"
2020-03-17 23:42:32 +01:00
rand = "0.7"
2020-03-18 18:59:55 +01:00
rayon = "1.3.0"
2020-03-18 11:46:56 +01:00
serde_yaml = "0.8"
2020-03-18 16:32:22 +01:00
structopt = "0.3"
2020-03-18 11:46:03 +01:00
[dependencies.nalgebra]
version = "0.20.0"
features = ["serde-serialize"]
2020-03-18 11:46:03 +01:00
[dependencies.serde]
version = "1.0"
features = ["derive"]