summaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: ebdf3307d7cda90bbc67ebb3d029d3867cd62a08 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[package]
name = "acap"
version = "0.1.0"
authors = ["Tavian Barnes <tavianator@tavianator.com>"]
edition = "2018"
description = "A principled API for nearest neighbor search in both metric and non-metric spaces"
repository = "https://github.com/tavianator/acap"
license = "MIT"
keywords = ["ann", "knn", "nearest-neighbors"]
categories = ["algorithms", "data-structures"]

[dependencies]
num-traits = "0.2.11"
rand = "0.7.3"

[dev-dependencies]
criterion = "0.3"

[[bench]]
name = "benches"
harness = false