-
Notifications
You must be signed in to change notification settings - Fork 74
/
Cargo.toml
62 lines (53 loc) · 1.22 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
54
55
56
57
58
59
60
61
62
[package]
authors = ["aljun <[email protected]>", "moonlight"]
edition = "2018"
license = "Apache-2.0"
name = "hora"
version = "0.1.1"
description = "Hora Search Everywhere"
homepage = "https://horasearch.com"
readme = "README.md"
repository = "https://github.com/hora-search/hora"
categories = ["algorithms", "data-structures"]
keywords = ["intelligence", "neighbor", "SIMD", "search", "distance"]
[package.metadata.docs.rs]
all-features = true
[profile.dev]
codegen-units = 4
debug = 1
debug-assertions = true
incremental = true
lto = false
opt-level = 0
overflow-checks = false
panic = 'unwind'
rpath = false
[profile.release]
codegen-units = 1
debug = false
debug-assertions = false
incremental = false
lto = "fat"
opt-level = 3
overflow-checks = false
panic = 'unwind'
rpath = false
[features]
no_std = ["hashbrown"]
no_thread = []
simd = ["packed_simd"]
[dependencies]
bincode = "^1.3"
fixedbitset = "0.4.0"
hashbrown = {version = "0.11.2", optional = true}
log = "^0.4"
num = "0.4.0"
packed_simd = {version = "0.3.6", package = "packed_simd_2", optional = true}
rand = "0.8.4"
rayon = "^1.5"
serde = {version = "^1.0", features = ["derive"]}
[dev-dependencies]
criterion = "0.3.4"
[[bench]]
harness = false
name = "bench_metrics"