2020-11-26 15:47:49 +00:00
|
|
|
[package]
|
2020-12-15 20:04:15 +00:00
|
|
|
name = "instant-distance"
|
2021-02-02 15:22:20 +00:00
|
|
|
version = "0.1.1"
|
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-02-01 12:24:21 +00:00
|
|
|
description = "Fast minimal implementation of HNSW maps for approximate nearest neighbors searches"
|
|
|
|
homepage = "https://github.com/InstantDomainSearch/instant-distance"
|
|
|
|
repository = "https://github.com/InstantDomainSearch/instant-distance"
|
|
|
|
documentation = "https://docs.rs/instant-distance"
|
2020-11-26 15:47:49 +00:00
|
|
|
|
2021-01-21 13:40:48 +00:00
|
|
|
[features]
|
|
|
|
with-serde = ["serde", "serde-big-array"]
|
|
|
|
|
2020-11-26 15:47:49 +00:00
|
|
|
[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"
|
2021-01-21 12:45:39 +00:00
|
|
|
parking_lot = "0.11"
|
2020-12-21 13:54:30 +00:00
|
|
|
rand = { version = "0.8", features = ["small_rng"] }
|
2020-12-14 14:13:10 +00:00
|
|
|
rayon = "1.5"
|
2020-12-14 14:49:36 +00:00
|
|
|
serde = { version = "1.0.118", features = ["derive"], optional = true }
|
2021-01-21 13:40:48 +00:00
|
|
|
serde-big-array = { version = "0.3.1", 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
|