Changed how NoiseTexture is created to allow noise function and parameters to be passed in as options. Allowed setting of noise source from URL parameters.
26 lines
437 B
TOML
26 lines
437 B
TOML
[package]
|
|
name = "rtiow"
|
|
version = "0.1.0"
|
|
authors = ["Bill Thiede <rust@xinu.tv>"]
|
|
|
|
[dependencies]
|
|
rand = "0.5.5"
|
|
image = "0.19.0"
|
|
crossbeam-channel = "0.2.4"
|
|
num_cpus = "1.8.0"
|
|
rayon = "1.0.2"
|
|
structopt = "0.2.10"
|
|
stderrlog = "0.4.1"
|
|
log = "0.4.5"
|
|
cpuprofiler = "0.0.3"
|
|
lazy_static = "1.1.0"
|
|
askama = "0.7.1"
|
|
actix-web = "0.7.8"
|
|
serde = "1.0.79"
|
|
serde_derive = "1.0.79"
|
|
|
|
# For better profiling support.
|
|
[profile.release]
|
|
debug = true
|
|
|