-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
42 lines (35 loc) · 1004 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
34
35
36
37
38
39
40
41
42
[package]
name = "space"
version = "0.18.1-alpha.0"
authors = ["Geordon Worley <vadixidav@gmail.com>", "Yuhan Liin <yuhanliin+github@protonmail.com>"]
edition = "2018"
description = "A library providing abstractions for spatial datastructures and search"
documentation = "https://docs.rs/space/"
repository = "https://github.com/rust-cv/space"
keywords = ["space", "knn", "ann", "search"]
categories = ["no-std", "computer-vision", "data-structures"]
license = "MIT"
readme = "README.md"
[features]
default = ["alloc"]
# Enables the usage of LinearKnn, which requires Vec.
alloc = []
[dependencies]
num-traits = { version = "0.2.14", default-features = false }
doc-comment = "0.3.3"
[dev-dependencies]
criterion = "0.3.4"
rand_core = "0.6.2"
rand_pcg = "0.3.0"
[[bench]]
name = "knn"
harness = false
required-features = ["simd-hamming", "alloc"]
[[test]]
name = "linear_knn"
required-features = ["alloc"]
[profile.bench]
lto = true
codegen-units = 1
[package.metadata.docs.rs]
all-features = true