forked from granne/granne
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
51 lines (46 loc) · 912 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
43
44
45
46
47
48
49
50
51
[package]
name = "granne"
version = "0.5.1"
edition = "2018"
authors = ["Erik Larsson <[email protected]>"]
description = "Graph-based Retrieval of Approximate Nearest Neighbors"
repository = "https://github.com/granne/granne"
documentation = "https://docs.rs/granne/"
license = "MIT"
readme = "README.md"
links = "blas"
exclude = [
"benches/",
"docker",
"py/",
"examples/",
"setup.py",
"pyproject.toml",
"CHANGELOG.md",
]
[profile.release]
debug = true
[features]
default = []
singlethreaded = []
rw_granne = []
[dependencies]
byteorder = "1.3"
flate2 = "1.0"
fxhash = "0.2"
madvise = "0.1.0"
memmap = "0.7"
ordered-float = "1.0"
owning_ref = "0.4"
parking_lot = "0.10"
pbr = "1.0.0"
rayon = "1.3"
serde_json = "1.0"
stream-vbyte = "0.3.2"
rand = "0.7"
blas = {version = "0.20.0", optional = true}
[dev-dependencies]
tempfile = "3.1"
rand = "0.7"
[workspace]
members = [".", "py"]