-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
52 lines (48 loc) · 1.33 KB
/
Cargo.toml
File metadata and controls
52 lines (48 loc) · 1.33 KB
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
[workspace]
resolver = "3"
members = ["examples", "nyas/diskann", "nyas/service", "nyas/system", "nyas/vecd"]
[workspace.package]
authors = ["Manish Kumar <manish@neocraft.tech>"]
edition = "2024"
homepage = "https://neocraft.tech/"
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/neocrafttech/nyas"
rust-version = "1.92.0"
version = "0.1.0"
[workspace.dependencies]
mimalloc = { version = "*", features = ["v3"] }
tokio = { version = "1.47.1", features = ["full"] }
tonic = { version = "0.14.2", features = ["transport"] }
tonic-prost = "0.14.2"
prost = "0.14"
futures = "0.3"
serde = { version = "1.0.210", features = ["derive", "rc"] }
serde_json = "1.0"
uuid = { version = "1.3", features = ["v4"] }
log = "0.4"
env_logger = "0.10"
memmap2 = "0.9.8"
lru = "0.16.1"
rand = "0.9.2"
rayon = "1.11.0"
ordered-float = "5.1.0"
thiserror = "2.0.17"
rmp-serde = "1.3.0"
nalgebra = "0.34.1"
bytemuck = "1.24.0"
rkyv = { version = "0.8.12", features = ["std", "bytecheck"] }
half = { version = "2.7.1", features = ["bytemuck", "num-traits", "serde", "std", "rand_distr", "rkyv"] }
simsimd = "6.5.3"
dashmap = "6.1.0"
tracing = "0.1.43"
criterion = { version = "0.7.0", features = ["html_reports"] }
[profile.release]
opt-level = 3
codegen-units = 1
lto = true
[profile.bench]
opt-level = 3
codegen-units = 1
lto = true
debug = false