-
Notifications
You must be signed in to change notification settings - Fork 8
/
Cargo.toml
53 lines (46 loc) · 1.53 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
43
44
45
46
47
48
49
50
51
52
53
[package]
name = "arroy"
description = "Annoy-inspired Approximate Nearest Neighbors in Rust, based on LMDB and optimized for memory usage"
version = "0.5.0"
documentation = "https://docs.rs/arroy"
repository = "https://github.com/meilisearch/arroy"
keywords = ["ANN-search", "Graph-algorithms", "Vector-Search", "Store"]
categories = ["algorithms", "database", "data-structures", "science"]
authors = ["Kerollmops <[email protected]>", "Tamo <[email protected]>"]
license = "MIT"
edition = "2021"
[dependencies]
bytemuck = { version = "1.18.0", features = ["derive", "extern_crate_alloc"] }
byteorder = "1.5.0"
heed = { version = "0.20.2", default-features = false }
log = "0.4.21"
memmap2 = "0.9.4"
ordered-float = "4.2.0"
rand = { version = "0.8.5", features = ["alloc"] }
rayon = "1.10.0"
roaring = "0.10.5"
tempfile = "3.10.1"
thiserror = "1.0.61"
nohash = "0.2.0"
[dev-dependencies]
anyhow = "1.0.86"
arbitrary = { version = "1.3.2", features = ["derive"] }
clap = { version = "4.5.7", features = ["derive"] }
env_logger = "0.11.3"
insta = "1.39.0"
instant-distance = "0.6.1"
proptest = "1.5.0"
rand = { version = "0.8.5", features = ["std_rng"] }
tempfile = "3.10.1"
[features]
default = []
# Enabling this feature provide a method on the reader that can plot its root node in the dot format.
plot = []
# Enabling this feature provide a method on the reader that assert its own validity.
assert-reader-validity = []
[[example]]
name = "graph"
required-features = ["plot"]
[[example]]
name = "fuzz"
required-features = ["assert-reader-validity"]