All checks were successful
continuous-integration/drone/push Build is passing
Add debugging images, and move rendering to output module.
42 lines
687 B
TOML
42 lines
687 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 }
|
|
image = "0.19.0"
|
|
lazy_static = "1.1.0"
|
|
log = "0.4.5"
|
|
num_cpus = "1.8.0"
|
|
rand = "0.5.5"
|
|
serde = "1.0.79"
|
|
serde_derive = "1.0.79"
|
|
serde_json = "1.0.41"
|
|
stderrlog = "0.4.1"
|
|
structopt = "0.2.10"
|
|
|
|
[dependencies.prometheus]
|
|
features = ["process", "push"]
|
|
version = "0.7.0"
|
|
optional = true
|
|
|
|
[dev-dependencies]
|
|
criterion = "0.2"
|
|
|
|
[profile]
|
|
[profile.release]
|
|
debug = true
|
|
|
|
[features]
|
|
profile = ["cpuprofiler"]
|
|
prom = ["prometheus"]
|