-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
127 lines (121 loc) · 3.26 KB
/
Cargo.toml
File metadata and controls
127 lines (121 loc) · 3.26 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
[workspace]
resolver = "2"
members = [
"crates/hydra-constitution",
"crates/hydra-animus",
"crates/hydra-kernel",
"crates/hydra-llm",
"crates/hydra-signals",
"crates/hydra-temporal",
"crates/hydra-memory",
"crates/hydra-axiom",
"crates/hydra-belief",
"crates/hydra-prediction",
"crates/hydra-trust",
"crates/hydra-adversary",
"crates/hydra-fleet",
"crates/hydra-swarm",
"crates/hydra-resurrection",
"crates/hydra-metabolism",
"crates/hydra-reflexive",
"crates/hydra-morphic",
"crates/hydra-persona",
"crates/hydra-genome",
"crates/hydra-cartography",
"crates/hydra-antifragile",
"crates/hydra-generative",
"crates/hydra-plastic",
"crates/hydra-tui",
"crates/hydra-companion",
"crates/hydra-voice",
"crates/hydra-horizon",
"crates/hydra-skills",
"crates/hydra-reach",
"crates/hydra-soul",
"crates/hydra-comprehension",
"crates/hydra-context",
"crates/hydra-language",
"crates/hydra-attention",
"crates/hydra-reasoning",
"crates/hydra-learning",
"crates/hydra-synthesis",
"crates/hydra-noticing",
"crates/hydra-executor",
"crates/hydra-transform",
"crates/hydra-environment",
"crates/hydra-protocol",
"crates/hydra-scheduler",
"crates/hydra-reach-extended",
"crates/hydra-automation",
"crates/hydra-audit",
"crates/hydra-omniscience",
"crates/hydra-pattern",
"crates/hydra-redteam",
"crates/hydra-calibration",
"crates/hydra-oracle",
"crates/hydra-wisdom",
"crates/hydra-settlement",
"crates/hydra-attribution",
"crates/hydra-portfolio",
"crates/hydra-crystallizer",
"crates/hydra-exchange",
"crates/hydra-federation",
"crates/hydra-consensus",
"crates/hydra-consent",
"crates/hydra-collective",
"crates/hydra-diplomat",
"crates/hydra-succession",
"crates/hydra-legacy",
"crates/hydra-continuity",
"crates/hydra-influence",
"crates/hydra-harness",
"crates/hydra-browser",
"crates/hydra-desktop",
"crates/hydra-mcp",
"crates/hydra-web",
"crates/hydra-semantic-nav",
"crates/hydra-swarm-browser",
]
[workspace.package]
version = "0.1.0"
edition = "2024"
license = "MIT"
repository = "https://github.com/agentralabs/agentralabs-tech"
[workspace.dependencies]
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tokio = { version = "1", features = ["full"] }
anyhow = "1"
thiserror = "2"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
uuid = { version = "1", features = ["v4", "serde"] }
chrono = { version = "0.4", features = ["serde"] }
reqwest = { version = "0.12", features = ["json", "stream"] }
async-trait = "0.1"
rusqlite = { version = "0.31", features = ["bundled"] }
dirs = "5"
toml = "0.8"
chromiumoxide = "0.9"
image = "0.25"
totp-rs = { version = "5", features = ["otpauth"] }
base64 = "0.22"
rand = "0.8"
axum = { version = "0.7", features = ["ws"] }
tower-http = { version = "0.5", features = ["cors"] }
[profile.dev]
codegen-units = 16
debug = 1
split-debuginfo = "unpacked"
incremental = true
[profile.test]
codegen-units = 16
debug = 1
split-debuginfo = "unpacked"
incremental = true
[profile.release]
opt-level = 3
lto = "thin"
strip = true
codegen-units = 1
panic = "abort"