instant-distance/Cargo.toml

26 lines
526 B
TOML
Raw Normal View History

2020-11-26 15:47:49 +00:00
[package]
2020-12-15 20:04:15 +00:00
name = "instant-distance"
2020-11-26 15:47:49 +00:00
version = "0.1.0"
2020-12-15 20:05:00 +00:00
license = "MIT OR Apache-2.0"
2020-11-26 15:47:49 +00:00
authors = ["Dirkjan Ochtman <dirkjan@ochtman.nl>"]
edition = "2018"
[dependencies]
2020-12-15 10:51:00 +00:00
indicatif = { version = "0.15", optional = true }
2020-12-16 12:37:39 +00:00
num_cpus = "1.13"
2020-12-14 14:39:16 +00:00
ordered-float = "2.0"
parking_lot = "0.11"
2020-12-21 13:54:30 +00:00
rand = { version = "0.8", features = ["small_rng"] }
rayon = "1.5"
2020-12-14 14:49:36 +00:00
serde = { version = "1.0.118", features = ["derive"], optional = true }
2021-01-20 12:25:06 +00:00
[dev-dependencies]
bencher = "0.1.5"
[[bench]]
name = "all"
harness = false
[profile.bench]
debug = true