blob: 579ffae6f6e0c9c50f54adba2a59296d64e7c6df (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
[package]
name = "acap"
version = "0.3.0"
authors = ["Tavian Barnes <tavianator@tavianator.com>"]
edition = "2021"
description = "As Close As Possible — nearest neighbor search in Rust."
readme = "README.md"
repository = "https://github.com/tavianator/acap"
license = "MIT"
keywords = ["ann", "knn", "nearest-neighbors"]
categories = ["algorithms", "data-structures"]
[dependencies]
num-traits = { version = "0.2.19", default-features = false, features = ["libm"] }
[dev-dependencies]
criterion = "0.5.1"
rand = "0.9.0"
[[bench]]
name = "benches"
harness = false
[package.metadata.docs.rs]
rustdoc-args = ["--html-in-header", "katex-header.html"]
|