-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
45 lines (36 loc) · 1.08 KB
/
Cargo.toml
File metadata and controls
45 lines (36 loc) · 1.08 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
[package]
name = "allman"
version = "0.3.0"
edition = "2021"
authors = ["MCP Agent Mail Team"]
description = "A high-performance, headless MCP Agent Mail server named in honor of Eric Allman."
[dependencies]
# Async Runtime & Web Server
tokio = { version = "1.36", features = ["full"] }
axum = { version = "0.7", features = ["macros"] }
tower = { version = "0.4", features = ["util", "timeout"] }
tower-http = { version = "0.5", features = ["fs", "cors", "trace"] }
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
# Search Engine
tantivy = "0.19"
# Version Control
git2 = "0.18"
# Concurrent Data Structures
dashmap = "5"
crossbeam-channel = "0.5"
# Utilities
uuid = { version = "1.7", features = ["v4", "v5", "serde"] }
chrono = { version = "0.4", features = ["serde"] }
anyhow = "1.0"
thiserror = "1.0"
dotenv = "0.15"
rand = "0.8"
# HTTP Client for Simulation & Ollama
reqwest = { version = "0.11", features = ["json"] }
# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
[dev-dependencies]
tempfile = "3.26.0"