-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathCargo.toml
More file actions
55 lines (52 loc) · 1.59 KB
/
Cargo.toml
File metadata and controls
55 lines (52 loc) · 1.59 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
[package]
name = "engraph"
version = "1.6.0"
edition = "2024"
description = "Local knowledge graph for AI agents. Hybrid search + MCP server for Obsidian vaults."
license = "MIT"
repository = "https://github.com/devwhodevs/engraph"
homepage = "https://github.com/devwhodevs/engraph"
readme = "README.md"
keywords = ["obsidian", "semantic-search", "mcp", "rag", "knowledge-graph"]
categories = ["command-line-utilities", "database", "text-processing"]
[dependencies]
clap = { version = "4", features = ["derive"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_yaml = "0.9"
toml = "0.8"
dirs = "5"
anyhow = "1"
rusqlite = { version = "0.32", features = ["bundled"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
tokenizers = { version = "0.22", default-features = false, features = ["fancy-regex"] }
sha2 = "0.10"
ureq = "2.12"
indicatif = "0.17"
dialoguer = "0.12"
console = "0.16"
regex = "1"
sqlite-vec = "0.1.8-alpha.1"
zerocopy = { version = "0.7", features = ["derive"] }
rayon = "1"
time = { version = "0.3", features = ["parsing", "formatting", "macros"] }
strsim = "0.11"
ignore = "0.4"
rmcp = { version = "1.4", features = ["transport-io"] }
tokio = { version = "1", features = ["macros", "rt-multi-thread", "process", "time", "net"] }
notify = "7.0"
notify-debouncer-full = "0.4"
llama-cpp-2 = "0.1"
encoding_rs = "0.8"
shimmytok = "0.7"
axum = "0.8"
tower-http = { version = "0.6", features = ["cors"] }
tower = "0.5"
uuid = { version = "1", features = ["v4"] }
rand = "0.9"
tokio-util = "0.7"
[features]
default = []
[dev-dependencies]
tempfile = "3"