Might move this into the main source base at some point, but I'm not totally sure about the correctness of the table yet, so would like to generate it for now.
62 lines
1.1 KiB
TOML
62 lines
1.1 KiB
TOML
[workspace]
|
|
members = [
|
|
"sub_crates/bvh_order",
|
|
"sub_crates/color",
|
|
"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
|
|
base64 = "0.5"
|
|
clap = "2.23"
|
|
crossbeam = "0.2"
|
|
half = "1.0"
|
|
lazy_static = "0.2"
|
|
nom = "1.2"
|
|
num_cpus = "1.0"
|
|
openexr = "0.5.0"
|
|
png_encode_mini = "0.1.2"
|
|
rustc-serialize = "0.3"
|
|
scoped_threadpool = "0.1"
|
|
time = "0.1"
|
|
|
|
# Local crate dependencies
|
|
[dependencies.bvh_order]
|
|
path = "sub_crates/bvh_order"
|
|
|
|
[dependencies.color]
|
|
path = "sub_crates/color"
|
|
|
|
[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" |