-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
209 lines (187 loc) · 6.61 KB
/
Cargo.toml
File metadata and controls
209 lines (187 loc) · 6.61 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
[package]
name = "autohands"
description = "Omnipotent Autonomous Agent Framework"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
license.workspace = true
[[bin]]
name = "autohands"
path = "src/main.rs"
[dependencies]
autohands-core = { workspace = true }
autohands-config = { workspace = true }
autohands-runtime = { workspace = true }
autohands-api = { workspace = true }
autohands-daemon = { workspace = true }
autohands-runloop = { workspace = true }
autohands-tools-filesystem = { path = "crates/extensions/tools-filesystem" }
autohands-tools-shell = { path = "crates/extensions/tools-shell" }
autohands-tools-desktop = { path = "crates/extensions/tools-desktop" }
autohands-tools-browser = { path = "crates/extensions/tools-browser" }
autohands-tools-code = { path = "crates/extensions/tools-code" }
autohands-tools-search = { path = "crates/extensions/tools-search" }
autohands-tools-web = { path = "crates/extensions/tools-web" }
autohands-agent-general = { path = "crates/extensions/agent-general" }
autohands-skills-dynamic = { path = "crates/extensions/skills-dynamic" }
autohands-tools-skill = { path = "crates/extensions/tools-skill" }
autohands-protocols = { workspace = true }
autohands-provider-anthropic = { path = "crates/extensions/provider-anthropic" }
autohands-provider-openai = { path = "crates/extensions/provider-openai" }
autohands-provider-gemini = { path = "crates/extensions/provider-gemini" }
autohands-checkpoint = { workspace = true }
autohands-monitor = { workspace = true }
autohands-memory-sqlite = { path = "crates/extensions/memory-sqlite" }
autohands-tools-cron = { path = "crates/extensions/tools-cron" }
autohands-tools-notify = { path = "crates/extensions/tools-notify" }
autohands-tools-image = { path = "crates/extensions/tools-image" }
autohands-tools-memory = { path = "crates/extensions/tools-memory" }
autohands-tools-agent = { path = "crates/extensions/tools-agent" }
autohands-memory-markdown = { path = "crates/extensions/memory-markdown" }
autohands-memory-vector = { path = "crates/extensions/memory-vector" }
autohands-memory-hybrid = { path = "crates/extensions/memory-hybrid" }
autohands-skills-bundled = { path = "crates/extensions/skills-bundled" }
serde_json = { workspace = true }
autohands-provider-ark = { path = "crates/extensions/provider-ark" }
autohands-channel-web = { path = "crates/extensions/channel-web" }
async-trait = { workspace = true }
axum = { workspace = true }
tokio = { workspace = true }
clap = { workspace = true }
tracing = { workspace = true }
tracing-subscriber = { workspace = true }
tracing-appender = { workspace = true }
dirs = { workspace = true }
nix = { version = "0.29", features = ["signal"] }
[workspace]
resolver = "2"
members = [
"crates/autohands-protocols",
"crates/autohands-core",
"crates/autohands-config",
"crates/autohands-macros",
"crates/autohands-runtime",
"crates/autohands-api",
# 24/7 Autonomous Agent modules
"crates/autohands-daemon",
"crates/autohands-runloop",
"crates/autohands-workqueue",
"crates/autohands-checkpoint",
"crates/autohands-monitor",
# Extensions
"crates/extensions/tools-filesystem",
"crates/extensions/tools-shell",
"crates/extensions/tools-search",
"crates/extensions/tools-web",
"crates/extensions/tools-code",
"crates/extensions/provider-anthropic",
"crates/extensions/provider-openai",
"crates/extensions/provider-gemini",
"crates/extensions/provider-ark",
"crates/extensions/memory-sqlite",
"crates/extensions/memory-vector",
"crates/extensions/memory-markdown",
"crates/extensions/agent-general",
"crates/extensions/skills-bundled",
"crates/extensions/skills-dynamic",
"crates/extensions/tools-browser",
"crates/extensions/tools-desktop",
"crates/extensions/tools-cron",
"crates/extensions/tools-notify",
"crates/extensions/tools-agent",
"crates/extensions/memory-hybrid",
"crates/extensions/tools-image",
"crates/extensions/tools-skill",
"crates/extensions/tools-memory",
"crates/extensions/channel-web",
]
[workspace.package]
version = "0.1.0"
edition = "2024"
rust-version = "1.85"
authors = ["AutoHands Contributors"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/autohands/autohands"
[workspace.dependencies]
# Async runtime
tokio = { version = "1.43", features = ["full"] }
tokio-util = { version = "0.7", features = ["rt"] }
tokio-stream = "0.1"
futures = "0.3"
async-trait = "0.1"
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_yml = "0.0.12"
toml = "0.8"
# Error handling
thiserror = "2.0"
anyhow = "1.0"
# Logging and tracing
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] }
tracing-appender = "0.2"
# HTTP and networking
axum = { version = "0.8", features = ["ws", "macros"] }
reqwest = { version = "0.12", features = ["json", "stream"] }
tower = "0.5"
tower-http = { version = "0.6", features = ["cors", "trace"] }
hyper = "1.5"
# Data types
uuid = { version = "1.11", features = ["v4", "serde"] }
chrono = { version = "0.4", features = ["serde"] }
bytes = "1.9"
url = { version = "2.5", features = ["serde"] }
# Validation and schema
schemars = "0.8"
jsonschema = "0.26"
# Database
rusqlite = { version = "0.32", features = ["bundled"] }
tokio-rusqlite = "0.6"
# CLI
clap = { version = "4.5", features = ["derive", "env"] }
# Testing
mockall = "0.13"
wiremock = "0.6"
tempfile = "3.14"
# Proc macros
syn = { version = "2.0", features = ["full", "extra-traits"] }
quote = "1.0"
proc-macro2 = "1.0"
darling = "0.20"
# Utilities
once_cell = "1.20"
parking_lot = "0.12"
dashmap = "6.1"
regex = "1.11"
glob = "0.3"
walkdir = "2.5"
notify = "7.0"
shellexpand = "3.1"
# Internal crates
autohands-protocols = { path = "crates/autohands-protocols" }
autohands-core = { path = "crates/autohands-core" }
autohands-config = { path = "crates/autohands-config" }
autohands-macros = { path = "crates/autohands-macros" }
autohands-runtime = { path = "crates/autohands-runtime" }
autohands-daemon = { path = "crates/autohands-daemon" }
autohands-runloop = { path = "crates/autohands-runloop" }
autohands-workqueue = { path = "crates/autohands-workqueue" }
autohands-checkpoint = { path = "crates/autohands-checkpoint" }
autohands-monitor = { path = "crates/autohands-monitor" }
autohands-api = { path = "crates/autohands-api" }
autohands-skills-dynamic = { path = "crates/extensions/skills-dynamic" }
# Cron scheduling
cron = "0.15"
# Directory utilities
dirs = "6.0"
[profile.release]
lto = true
codegen-units = 1
panic = "abort"
strip = true
[profile.dev]
opt-level = 0
debug = true
[profile.dev.package."*"]
opt-level = 3