-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
22 lines (21 loc) · 852 Bytes
/
Cargo.toml
File metadata and controls
22 lines (21 loc) · 852 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[workspace]
resolver = "2"
members = [
"mneme-core", # Data types, traits, error types
"mneme-store", # Storage backends (vector index + document store)
"mneme-consolidate", # The three operations: compact, evolve, resolve
"mneme-embed", # Embedding model abstraction
"mneme-api", # Public API surface (the interface agents use)
"mneme-server", # HTTP server for multi-agent access
"tests", # Integration tests for the full system
]
[workspace.dependencies]
tokio = { version = "1", features = ["full"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
uuid = { version = "1", features = ["v4", "serde"] }
chrono = { version = "0.4", features = ["serde"] }
thiserror = "2"
tracing = "0.1"
async-trait = "0.1"
reqwest = { version = "0.12", features = ["json"] }