55 lines
1.0 KiB
TOML
55 lines
1.0 KiB
TOML
[workspace]
|
|
members = [
|
|
"sub_crates/float4",
|
|
"sub_crates/halton",
|
|
"sub_crates/math3d",
|
|
"sub_crates/mem_arena",
|
|
"sub_crates/sobol",
|
|
"sub_crates/spectra_xyz"
|
|
]
|
|
|
|
[package]
|
|
name = "psychopath"
|
|
version = "0.1.0"
|
|
authors = ["Nathan Vegdahl <cessen@cessen.com>"]
|
|
|
|
[features]
|
|
simd_perf = ["float4/simd_perf", "math3d/simd_perf"]
|
|
|
|
[profile.release]
|
|
debug = true
|
|
|
|
[dependencies]
|
|
# Crates.io dependencies
|
|
time = "0.1"
|
|
clap = "2.23"
|
|
rustc-serialize = "0.3"
|
|
nom = "1.2"
|
|
scoped_threadpool = "0.1"
|
|
crossbeam = "0.2"
|
|
num_cpus = "1.0"
|
|
lodepng = "0.8"
|
|
lazy_static = "0.2"
|
|
|
|
|
|
# Github dependencies
|
|
openexr = { git = "https://github.com/cessen/openexr-rs", rev = "612fc6c81c031970ffddcab15509236711613de8" }
|
|
|
|
# Local crate dependencies
|
|
[dependencies.float4]
|
|
path = "sub_crates/float4"
|
|
|
|
[dependencies.halton]
|
|
path = "sub_crates/halton"
|
|
|
|
[dependencies.math3d]
|
|
path = "sub_crates/math3d"
|
|
|
|
[dependencies.mem_arena]
|
|
path = "sub_crates/mem_arena"
|
|
|
|
[dependencies.sobol]
|
|
path = "sub_crates/sobol"
|
|
|
|
[dependencies.spectra_xyz]
|
|
path = "sub_crates/spectra_xyz" |