forked from lerouxrgd/ngt-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
33 lines (29 loc) · 788 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 = "ngt"
version = "0.6.1"
authors = ["Romain Leroux <[email protected]>"]
edition = "2021"
description = "Rust wrappers for NGT nearest neighbor search."
repository = "https://github.com/lerouxrgd/ngt-rs"
keywords = ["ngt", "knn", "ann", "optimization"]
categories = ["science"]
license = "Apache-2.0"
readme = "README.md"
[dependencies]
half = "2"
ngt-sys = { path = "ngt-sys", version = "2.1.3" }
num_enum = "0.7"
scopeguard = "1"
[dev-dependencies]
rand = "0.8"
rayon = "1"
tempfile = "3"
[features]
static = ["ngt-sys/static"]
shared_mem = ["ngt-sys/shared_mem"]
large_data = ["ngt-sys/large_data"]
quantized = ["ngt-sys/quantized"]
qg_optim = ["quantized", "ngt-sys/qg_optim"]
[package.metadata.docs.rs]
features = ["quantized"]
rustdoc-args = ["--cfg", "docsrs"]