-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
42 lines (35 loc) · 1.12 KB
/
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
34
35
36
37
38
39
40
41
42
[package]
name = "nabo"
version = "0.3.0"
edition = "2021"
authors = ["Stéphane Magnenat <[email protected]>", "Hannes Sommer <[email protected]>"]
license = "MIT OR Apache-2.0"
description = "A fast K Nearest Neighbor (KNN) library for low-dimensional spaces"
repository = "https://github.com/enlightware/nabo-rs"
homepage = "https://github.com/enlightware/nabo-rs"
readme = "README.md"
keywords = ["NNS", "nearest_neighbor", "K-D_tree", "data_structures", "KNN"]
categories = ["mathematics", "science", "computer-vision", "multimedia", "game-development"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = ["dummy_point"]
dummy_point = ["rand"]
[dependencies]
partition = "0.1.2"
num-traits = "0.2"
ordered-float = "3.7.0"
rand = { version = "0.8", optional = true }
[dev-dependencies]
rand = "0.8"
float-cmp = "0.9"
criterion = "0.5"
[profile.release]
debug = 1
[[bench]]
name = "candidate_container_comparison"
harness = false
required-features = ["dummy_point"]
[[bench]]
name = "simple"
harness = false
required-features = ["dummy_point"]