instant-distance/Cargo.toml

20 lines
524 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"
2021-01-12 13:33:31 +00:00
[features]
with-serde = ["serde", "serde-big-array"]
2020-11-26 15:47:49 +00:00
[dependencies]
ahash = "0.6.1"
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"
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-12 13:33:31 +00:00
serde-big-array = { version = "0.3.1", optional = true }