-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
80 lines (77 loc) · 2.77 KB
/
Cargo.toml
File metadata and controls
80 lines (77 loc) · 2.77 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
69
70
71
72
73
74
75
76
77
78
79
80
[workspace]
members = [
"crates/*",
]
resolver = "2"
[workspace.package]
edition = "2021"
license = "MIT"
version = "0.1.8"
authors = ["Greentic AI"]
description = "DWBase: agent-first immutable atom store, components, and tools."
homepage = "https://github.com/greenticai/greentic-dwbase"
documentation = "https://github.com/greenticai/greentic-dwbase"
repository = "https://github.com/greenticai/greentic-dwbase"
readme = "README.md"
keywords = ["agents", "memory", "vector", "wasm", "database"]
categories = ["database-implementations", "wasm", "command-line-utilities"]
[workspace.dependencies]
serde = { version = "1", features = ["derive"] }
rmp-serde = { version = "1", default-features = false }
serde_json = "1"
thiserror = "2"
time = { version = "0.3", default-features = false, features = ["formatting", "parsing"] }
hnsw_rs = "0.3"
rand = "0.10"
num_cpus = "1"
wit-parser = "0.246"
tracing = "0.1"
tracing-subscriber = "0.3"
metrics = "0.24"
anyhow = "1"
clap = "4"
reqwest = "0.13"
axum = "0.8"
toml = "1"
fs2 = "0.4"
metrics-exporter-prometheus = { version = "0.18", default-features = false }
uuid = "1"
ctrlc = "3"
zstd = "0.13"
tar = "0.4"
humantime = "2"
walkdir = "2"
async-trait = "0.1"
futures = "0.3"
parking_lot = "0.12"
once_cell = "1"
hex = "0.4"
crc32fast = "1"
sha2 = "0.11"
aes-gcm = "0.10"
rand_chacha = "0.10"
indexmap = "2"
sled = "0.34"
criterion = { version = "0.8", features = ["async_tokio"] }
wit-bindgen = "0.55"
async-nats = { version = "0.47", default-features = false, features = ["ring"] }
siphasher = "1"
tempfile = "3"
tokio = { version = "1", default-features = false }
dwbase-core = { path = "crates/dwbase-core", version = "0.1" }
dwbase-engine = { path = "crates/dwbase-engine", version = "0.1" }
dwbase-metrics = { path = "crates/dwbase-metrics", version = "0.1" }
dwbase-storage-sled = { path = "crates/dwbase-storage-sled", version = "0.1" }
dwbase-vector-hnsw = { path = "crates/dwbase-vector-hnsw", version = "0.1" }
dwbase-stream-local = { path = "crates/dwbase-stream-local", version = "0.1" }
dwbase-security = { path = "crates/dwbase-security", version = "0.1" }
dwbase-embedder-dummy = { path = "crates/dwbase-embedder-dummy", version = "0.1" }
dwbase-swarm = { path = "crates/dwbase-swarm", version = "0.1" }
dwbase-swarm-nats = { path = "crates/dwbase-swarm-nats", version = "0.1" }
dwbase-cli = { path = "crates/dwbase-cli", version = "0.1" }
dwbase-node = { path = "crates/dwbase-node", version = "0.1" }
dwbase-wit-host = { path = "crates/dwbase-wit-host", version = "0.1" }
dwbase-wit-guest = { path = "crates/dwbase-wit-guest", version = "0.1" }
dwbase-bench = { path = "crates/dwbase-bench", version = "0.1" }
component-dwbase = { path = "crates/component-dwbase", version = "0.1" }
dwbase-pack-runner = { path = "crates/dwbase-pack-runner", version = "0.1" }