psychopath/Cargo.toml
Nathan Vegdahl e4c94d0c58 Optional use of SIMD intrinsics, via feature in cargo.
This is disabled by default right now, because it only builds on
nightly.
2016-07-16 19:58:39 -07:00

22 lines
372 B
TOML

[package]
name = "psychopath"
version = "0.1.0"
authors = ["Nathan Vegdahl <cessen@cessen.com>"]
[features]
simd_perf = ["simd"]
[profile.release]
debug = true
[dependencies]
docopt = "0.6"
rustc-serialize = "0.3"
nom = "1.2"
scoped_threadpool = "0.1"
crossbeam = "0.2"
num_cpus = "0.2"
quickersort = "2.0"
lodepng = "0.8"
simd = { version = "0.1.1", optional = true }