26 lines
526 B
TOML
26 lines
526 B
TOML
[package]
|
|
name = "instant-distance"
|
|
version = "0.1.0"
|
|
license = "MIT OR Apache-2.0"
|
|
authors = ["Dirkjan Ochtman <dirkjan@ochtman.nl>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
indicatif = { version = "0.15", optional = true }
|
|
num_cpus = "1.13"
|
|
ordered-float = "2.0"
|
|
parking_lot = "0.11"
|
|
rand = { version = "0.8", features = ["small_rng"] }
|
|
rayon = "1.5"
|
|
serde = { version = "1.0.118", features = ["derive"], optional = true }
|
|
|
|
[dev-dependencies]
|
|
bencher = "0.1.5"
|
|
|
|
[[bench]]
|
|
name = "all"
|
|
harness = false
|
|
|
|
[profile.bench]
|
|
debug = true
|