project: move to Cargo workspace
This commit is contained in:
parent
b5835b2726
commit
01d2c2d973
41
Cargo.toml
41
Cargo.toml
|
@ -1,38 +1,5 @@
|
|||
[package]
|
||||
name = "pathtracer"
|
||||
version = "0.1.0"
|
||||
authors = [
|
||||
"Bruno BELANYI <brunobelanyi@gmail.com>",
|
||||
"Antoine Martin <antoine97.martin@gmail.com>"
|
||||
[workspace]
|
||||
|
||||
members = [
|
||||
"pathtracer",
|
||||
]
|
||||
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]
|
||||
bvh = "0.3.2"
|
||||
derive_more = "0.99.3"
|
||||
enum_dispatch = "0.2.1"
|
||||
image = "0.23.0"
|
||||
indicatif = "0.14.0"
|
||||
rand = "0.7"
|
||||
rayon = "1.3.0"
|
||||
serde_yaml = "0.8"
|
||||
structopt = "0.3"
|
||||
|
||||
[dependencies.nalgebra]
|
||||
version = "0.20.0"
|
||||
features = ["serde-serialize"]
|
||||
|
||||
[dependencies.serde]
|
||||
version = "1.0"
|
||||
features = ["derive"]
|
||||
|
|
38
pathtracer/Cargo.toml
Normal file
38
pathtracer/Cargo.toml
Normal file
|
@ -0,0 +1,38 @@
|
|||
[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]
|
||||
bvh = "0.3.2"
|
||||
derive_more = "0.99.3"
|
||||
enum_dispatch = "0.2.1"
|
||||
image = "0.23.0"
|
||||
indicatif = "0.14.0"
|
||||
rand = "0.7"
|
||||
rayon = "1.3.0"
|
||||
serde_yaml = "0.8"
|
||||
structopt = "0.3"
|
||||
|
||||
[dependencies.nalgebra]
|
||||
version = "0.20.0"
|
||||
features = ["serde-serialize"]
|
||||
|
||||
[dependencies.serde]
|
||||
version = "1.0"
|
||||
features = ["derive"]
|
Loading…
Reference in a new issue