pathtracer/Cargo.toml

25 lines
485 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"
2020-03-17 23:25:41 +01:00
image = "0.23.0"