forked from liquidos-ai/AutoAgents
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
136 lines (123 loc) · 3.96 KB
/
Cargo.toml
File metadata and controls
136 lines (123 loc) · 3.96 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
[workspace]
resolver = "2"
default-members = [
"crates/autoagents",
"crates/autoagents-core",
"crates/autoagents-llm",
"crates/autoagents-derive",
"crates/autoagents-protocol",
]
members = ["crates/*", "examples/*", "bindings/python/*"]
exclude = [
"examples/wasm_tool",
"crates/autoagents-test-utils",
"bindings/python/.pytest_cache",
"bindings/python/__pycache__",
]
[workspace.package]
version = "0.3.7"
edition = "2024"
license = "MIT OR Apache-2.0"
description = "Agent Framework for Building Autonomous Agents"
repository = "https://github.com/liquidos-ai/AutoAgents"
keywords = ["agents", "llm"]
readme = "README.md"
categories = []
[workspace.dependencies]
# Core Crates
autoagents = { path = "crates/autoagents", version = "0.3.7" }
autoagents-derive = { path = "crates/autoagents-derive", version = "0.3.7" }
autoagents-core = { path = "crates/autoagents-core", version = "0.3.7" }
autoagents-toolkit = { path = "crates/autoagents-toolkit", version = "0.3.7" }
autoagents-protocol = { path = "crates/autoagents-protocol", version = "0.3.7" }
autoagents-guardrails = { path = "crates/autoagents-guardrails", version = "0.3.7" }
# LLM and Providers
autoagents-llm = { path = "crates/autoagents-llm", version = "0.3.7" }
autoagents-mistral-rs = { path = "crates/autoagents-mistral-rs", version = "0.3.7" }
autoagents-llamacpp = { path = "crates/autoagents-llamacpp", version = "0.3.7" }
# Store
autoagents-qdrant = { path = "crates/autoagents-qdrant", version = "0.3.7" }
# Speech (TTS/STT)
autoagents-speech = { path = "crates/autoagents-speech", version = "0.3.7" }
# Telemetry
autoagents-telemetry = { path = "crates/autoagents-telemetry", version = "0.3.7" }
syn = { version = "2.0.117", features = ["full"] }
tokio = { version = "1.50.0", features = ["full"] }
async-trait = "0.1.89"
reqwest = { version = "0.13.2", features = ["json", "query", "stream"] }
serde = { version = "1.0.228", features = [
"derive",
"rc",
], default-features = false }
serde_json = "1.0.149"
strum = { version = "0.28.0", features = ["derive", "strum_macros"] }
schemars = "0.8.19"
strum_macros = "0.28.0"
tokio-stream = "0.1.18"
thiserror = "2.0.18"
futures = "0.3.32"
futures-core = "0.3.32"
futures-util = "0.3.32"
proc-macro2 = "1.0.106"
quote = "1.0.44"
clap = { version = "4.6.0", features = ["derive"] }
ureq = { version = "3.2.0", features = ["json"] }
uuid = { version = "1.21.0", features = ["v4"] }
log = "0.4.29"
env_logger = { version = "0.11.9" }
chrono = { version = "0.4.44", default-features = false, features = [
"serde",
"clock",
] }
dirs = "6.0.0"
regex = "1.12.3"
glob = "0.3.3"
walkdir = "2.5"
ignore = "0.4.25"
wasmtime = "43.0.0"
tokenizers = { version = "0.22.2", default-features = false, features = [] }
rand = "0.10.0"
minijinja = "2.18.0"
tiktoken-rs = { version = "0.9.1" }
base64 = "0.22.1"
either = { version = "1.15.0", features = ["serde"] }
tempfile = "3.27.0"
getrandom = "0.4.2"
ndarray = "0.17.2"
tokio-test = "0.4.5"
wasm-bindgen = "0.2.114"
wasm-bindgen-futures = "0.4.64"
serde-wasm-bindgen = "0.6"
bytemuck = "1.23.2"
once_cell = "1.21.3"
pdf-extract = "0.10.0"
zip = { version = "8.0.0", default-features = false, features = ["deflate"] }
quick-xml = "0.39.1"
calamine = "0.34"
html2text = "0.16.7"
csv = "1.4"
rmcp = { version = "1.2.0" }
image = { version = "0.25.9" }
anyhow = "1.0.101"
tracing = "0.1.44"
tracing-subscriber = "0.3.23"
qdrant-client = { version = "1.17.0", default-features = false, features = [
"serde",
] }
httpmock = "0.8.3"
testcontainers = "0.27.1"
hound = "3.5.1"
rodio = "0.22.2"
ractor = { version = "0.15.7" }
toml = { version = "1.0.7" }
hf-hub = { version = "0.5.0", default-features = false }
encoding_rs = "0.8.35"
[profile.release]
lto = "thin" # Enable link-time optimization
codegen-units = 1 # Better optimization (slower compile)
# Separate profile for profiling (keeps release fast)
[profile.profiling]
inherits = "release"
debug = true # Full debug info for symbols
[profile.bench]
debug = true