2020-03-08 16:22:44 +01:00
|
|
|
[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
|
|
|
|
|
2020-03-16 14:57:01 +01:00
|
|
|
[lib]
|
|
|
|
name = "pathtracer"
|
|
|
|
path = "src/lib.rs"
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "pathtracer"
|
|
|
|
path = "src/main.rs"
|
|
|
|
|
2020-03-08 16:22:44 +01:00
|
|
|
[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"
|