-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (30 loc) · 700 Bytes
/
Cargo.toml
File metadata and controls
35 lines (30 loc) · 700 Bytes
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
[package]
name = "entic"
version = "0.0.1"
edition = "2024"
[[bin]]
name = "entic"
path = "src/main.rs"
[[bin]]
name = "entic-mcp"
path = "src/bin/mcp_server.rs"
[lib]
name = "entic"
path = "src/lib.rs"
[dependencies]
clap = { version = "4", features = ["derive"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
reqwest = { version = "0.12", features = ["blocking", "json"] }
ratatui = "0.29"
crossterm = "0.28"
textwrap = "0.16"
regex = "1"
glob = "0.3"
walkdir = "2"
rmcp = { version = "1.3.0", features = ["server", "transport-io", "macros"] }
tokio = { version = "1", features = ["full"] }
anchordb = { path = "../anchordb" }
dirs = "5"
[dev-dependencies]
tempfile = "3"