-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathCargo.toml
More file actions
42 lines (33 loc) · 695 Bytes
/
Cargo.toml
File metadata and controls
42 lines (33 loc) · 695 Bytes
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 = "haystackdb"
version = "0.1.0"
edition = "2021"
[build]
target = "x86_64-unknown-linux-gnu"
flags = ["-C", "target-cpu=native"]
[dependencies]
warp = "0.3"
tokio = { version = "1", features = ["full"] }
serde = { version = "1.0", features = ["derive"] }
rayon = "1.10.0"
uuid = { version = "1.8.0", features = ["v4", "serde"] }
memmap = "0.7.0"
log = "0.4.14"
fs2 = "0.4.0"
env_logger = "0.11.3"
serde_json = "1.0.68"
[profile.release]
opt-level = 3
[profile.bench]
opt-level = 3
# [[bench]]
# name = "hamming_distance"
# harness = false
# [[bench]]
# name = "gemv"
# harness = false
# [[bench]]
# name = "gemm"
# harness = false
[dev-dependencies]
criterion = "0.5.1"