-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
33 lines (29 loc) · 905 Bytes
/
Cargo.toml
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
26
27
28
29
30
31
32
33
[package]
name = "petal-neighbors"
version = "0.11.0"
edition = "2021"
rust-version = "1.74"
description = "Nearest neighbor search algorithms including a ball tree and a vantage point tree."
readme = "README.md"
documentation = "https://docs.rs/petal-neighbors"
homepage = "https://github.com/petabi/petal-neighbors"
repository = "https://github.com/petabi/petal-neighbors"
license = "Apache-2.0"
keywords = ["nearest-neighbor", "knn", "ball-tree", "vantage-point"]
categories = ["algorithms", "data-structures"]
authors = ["Min Kim <[email protected]>", "Min Shao <[email protected]>"]
exclude = ["./github"]
[badges]
codecov = { repository = "petabi/petal-neighbors", service = "github" }
[dependencies]
ndarray = "0.16"
num-traits = "0.2"
ordered-float = "4"
thiserror = "2"
[dev-dependencies]
approx = "0.5"
criterion = "0.5"
ndarray-rand = "0.15.0"
[[bench]]
name = "ball_tree"
harness = false