-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
68 lines (62 loc) · 1.54 KB
/
Copy pathCargo.toml
File metadata and controls
68 lines (62 loc) · 1.54 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
[package]
name = "amazon-rose-forest"
version = "0.1.0"
edition = "2021"
description = "Amazon Rose Forest distributed vector database"
authors = ["Anthony Garrett <kalisam@gmail.com>"]
license = "MIT"
repository = "https://github.com/kalisam/amazon_rose_forest_01"
[dependencies]
tokio = { version = "1.28.0", features = ["full"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
thiserror = "1.0"
anyhow = "1.0"
tracing = "0.1"
tracing-subscriber = "0.3"
futures = "0.3"
dashmap = "5.4.0"
rand = "0.8"
bytes = "1.4"
uuid = { version = "1.3", features = ["v4", "serde"] }
async-trait = "0.1"
chrono = { version = "0.4", features = ["serde"] }
hashbrown = "0.14"
prometheus = "0.13"
once_cell = "1.18.0"
rand_distr = "0.4"
sha2 = "0.10.7" # Added SHA-2 cryptographic hash functions
sha3 = { version = "0.10", optional = true }
blake3 = { version = "1", optional = true }
rand = "0.8"
serde_bytes = "0.11"
wide = "0.7"
warp = "0.3"
bulletproofs = "4.0.0"
ad4m-client = "0.10.1-release-candidate-3"
sysinfo = "0.28"
# Holochain dependencies
hdk = "0.1.0"
holo_hash = "0.1.0"
holochain_zome_types = "0.1.0"
holochain = { version = "0.1.0", optional = true }
petgraph = "0.6.3"
nalgebra = "0.32.2"
opentelemetry = "0.19.0"
opentelemetry-otlp = "0.12.0"
[dev-dependencies]
criterion = "0.4"
tokio-test = "0.4"
proptest = "1.1"
rand = "0.8"
rand_chacha = "0.3"
[features]
default = ["sha2"]
formal_verification = []
holochain_conductor = ["holochain"]
sha2 = []
sha3 = ["dep:sha3"]
blake3 = ["dep:blake3"]
[[bench]]
name = "vector_operations"
harness = false