-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
101 lines (88 loc) · 2.39 KB
/
Cargo.toml
File metadata and controls
101 lines (88 loc) · 2.39 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
[workspace]
resolver = "2"
members = [
"crates/hermes-core",
"crates/hermes-provider",
"crates/hermes-tools",
"crates/hermes-mcp",
"crates/hermes-memory",
"crates/hermes-agent",
"crates/hermes-managed",
"crates/hermes-config",
"crates/hermes-skills",
"crates/hermes-cli",
"crates/hermes-gateway",
"crates/hermes-cron",
]
[workspace.package]
version = "0.1.0"
edition = "2024"
rust-version = "1.86"
license = "MIT"
repository = "https://github.com/willamhou/hermes-agent-rs"
[workspace.dependencies]
# Core
serde = { version = "1", features = ["derive"] }
serde_json = "1"
async-trait = "0.1"
thiserror = "2"
anyhow = "1"
uuid = { version = "1", features = ["v4", "serde"] }
chrono = { version = "0.4", features = ["serde"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# Async
tokio = { version = "1", features = ["full"] }
tokio-stream = "0.1"
tokio-util = { version = "0.7", features = ["io"] }
# HTTP
reqwest = { version = "0.12", features = ["json", "stream"] }
axum = "0.8"
serenity = { version = "0.12", default-features = false, features = ["client", "gateway", "model", "rustls_backend"] }
bytes = "1"
base64 = "0.22"
chromiumoxide = "0.7"
# Config
serde_yaml_ng = "0.10"
dotenvy = "0.15"
dirs = "6"
# SQLite
tokio-rusqlite = "0.7"
rusqlite = { version = "0.37", features = ["bundled"] }
# CLI
rustyline = "15"
crossterm = "0.28"
clap = { version = "4", features = ["derive"] }
comrak = "0.35"
# Security
secrecy = { version = "0.10", features = ["serde"] }
sha2 = "0.10"
signet-core = "0.4.6"
# Tools
inventory = "0.3"
dashmap = "6"
walkdir = "2"
regex = "1"
libc = "0.2"
# Tokenizer
tokenizers = "0.20"
# Cron
cron = "0.15"
# Testing
tempfile = "3"
tower = { version = "0.5", features = ["util"] }
http = "1"
http-body-util = "0.1"
# Internal crates
hermes-core = { path = "crates/hermes-core" }
hermes-provider = { path = "crates/hermes-provider" }
hermes-tools = { path = "crates/hermes-tools" }
hermes-mcp = { path = "crates/hermes-mcp" }
hermes-memory = { path = "crates/hermes-memory" }
hermes-agent = { path = "crates/hermes-agent" }
hermes-managed = { path = "crates/hermes-managed" }
hermes-config = { path = "crates/hermes-config" }
hermes-skills = { path = "crates/hermes-skills" }
hermes-cli = { path = "crates/hermes-cli" }
hermes-gateway = { path = "crates/hermes-gateway" }
hermes-cron = { path = "crates/hermes-cron" }