-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCargo.toml
More file actions
74 lines (61 loc) · 1.71 KB
/
Cargo.toml
File metadata and controls
74 lines (61 loc) · 1.71 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
[package]
name = "sediment-mcp"
version = "0.5.1"
edition = "2024"
repository = "https://github.com/rendro/sediment"
homepage = "https://github.com/rendro/sediment"
authors = ["rendro"]
description = "Semantic memory for AI agents - local-first, MCP-native"
license = "MIT"
readme = "README.md"
keywords = ["mcp", "memory", "semantic-search", "ai-agent", "embeddings"]
categories = ["command-line-utilities", "database"]
[lib]
name = "sediment"
path = "src/lib.rs"
[[bin]]
name = "sediment"
path = "src/main.rs"
[dependencies]
# Database - LanceDB for vector storage
lancedb = "0.17"
# Arrow crates - must match lancedb's version (v53)
arrow-array = "53"
arrow-schema = "53"
# Embeddings - using candle for simpler integration
candle-core = "0.8"
candle-nn = "0.8"
candle-transformers = "0.8"
hf-hub = { version = "0.4", default-features = false, features = ["tokio", "ureq", "rustls-tls"] }
tokenizers = "0.21"
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
# Async
tokio = { version = "1", features = ["rt", "rt-multi-thread", "sync", "time", "macros"] }
# CLI
clap = { version = "4", features = ["derive", "env"] }
dialoguer = "0.11"
# Access tracking
rusqlite = { version = "0.31", features = ["bundled"] }
# Utils
uuid = { version = "1", features = ["v4", "serde"] }
chrono = { version = "0.4", features = ["serde"] }
thiserror = "2"
anyhow = "1"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
dirs = "5"
sha2 = "0.10"
futures = "0.3"
[features]
bench = []
[dev-dependencies]
tempfile = "3"
criterion = { version = "0.5", features = ["html_reports", "async_tokio"] }
rand = "0.8"
[profile.release]
panic = "abort"
[[bench]]
name = "recall_bench"
harness = false