raytracers/rtiow/Cargo.toml
Bill Thiede b73444beaf
All checks were successful
continuous-integration/drone/push Build is passing
Make cpu profiling an optional build time configuration.
2019-10-10 13:49:13 -07:00

42 lines
685 B
TOML

[package]
authors = ["Bill Thiede <rust@xinu.tv>"]
edition = "2018"
name = "rtiow"
version = "0.1.0"
[[bench]]
harness = false
name = "spheres"
[dependencies]
actix-web = "0.7.8"
askama = "0.7.1"
chrono = "*"
cpuprofiler = { version = "0.0.3", optional = true }
crossbeam-channel = "0.2.4"
getopts = "*"
image = "0.19.0"
lazy_static = "1.1.0"
log = "0.4.5"
num_cpus = "1.8.0"
rand = "0.5.5"
rayon = "1.0.2"
serde = "1.0.79"
serde_derive = "1.0.79"
stderrlog = "0.4.1"
structopt = "0.2.10"
[dependencies.prometheus]
features = ["process", "push"]
version = "0.7.0"
[dev-dependencies]
criterion = "0.2"
[profile]
[profile.release]
debug = true
[features]
profile = ["cpuprofiler"]