-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
76 lines (74 loc) · 2.5 KB
/
Copy pathCargo.toml
File metadata and controls
76 lines (74 loc) · 2.5 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
[workspace]
members = [
"crates/agentkit-compaction",
"crates/agentkit-core",
"crates/agentkit-context",
"crates/agentkit-capabilities",
"crates/agentkit-acp",
"crates/agentkit-tools-core",
"crates/agentkit-tools-derive",
"crates/agentkit-task-manager",
"crates/agentkit-loop",
"crates/agentkit",
"crates/agentkit-adapter-completions",
"crates/agentkit-provider-openrouter",
"crates/agentkit-provider-openai",
"crates/agentkit-provider-ollama",
"crates/agentkit-provider-vllm",
"crates/agentkit-provider-groq",
"crates/agentkit-provider-mistral",
"crates/agentkit-provider-anthropic",
"crates/agentkit-provider-baseten",
"crates/agentkit-provider-cerebras",
"crates/agentkit-reporting",
"crates/agentkit-tool-fs",
"crates/agentkit-tool-shell",
"crates/agentkit-tool-compose",
"crates/agentkit-tool-skills",
"crates/agentkit-http",
"crates/agentkit-mcp",
"crates/agentkit-plugins",
"crates/agentkit-integration-tests",
"examples/anthropic-chat",
"examples/cerebras-batch",
"examples/cerebras-chat",
"examples/openrouter-chat",
"examples/openrouter-codemod",
"examples/openrouter-coding-agent",
"examples/openrouter-context-agent",
"examples/openrouter-agent-cli",
"examples/openrouter-compaction-agent",
"examples/openrouter-context-window-compaction",
"examples/openrouter-parallel-agent",
"examples/openrouter-macro-tool",
"examples/openrouter-mcp-tool",
"examples/openrouter-session-persistence",
"examples/openrouter-subagent-tool",
"examples/mcp-reference-interop",
"examples/mcp-dynamic-auth",
"examples/openrouter-acp-trio",
"projects/how",
"benchmarks/compose-bench",
]
resolver = "2"
[workspace.package]
edition = "2024"
homepage = "https://github.com/danielkov/agentkit"
license = "MIT"
repository = "https://github.com/danielkov/agentkit"
rust-version = "1.92"
version = "0.10.5"
[workspace.dependencies]
async-trait = "0.1.89"
dotenvy = "0.15.7"
reqwest = { version = "0.13.2", default-features = false, features = ["json", "rustls", "stream"] }
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.145"
thiserror = "2.0.17"
tokio = { version = "1.47.1", features = ["macros", "rt-multi-thread"] }
base64 = "0.22.1"
futures-util = "0.3.31"
futures-timer = "3.0.3"
tracing = "0.1"
schemars = { version = "1", default-features = false }
mlua = { version = "0.11.6", features = ["lua54", "vendored", "serialize", "async", "send"] }