-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
61 lines (52 loc) · 1.62 KB
/
Copy pathCargo.toml
File metadata and controls
61 lines (52 loc) · 1.62 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
[package]
name = "adk-ralph"
version = "0.6.0"
edition = "2024"
rust-version = "1.85.0"
license = "Apache-2.0"
authors = ["James Karanja Maina <james.karanja@zavora.ai>"]
description = "Ralph - Multi-Agent Autonomous Development System powered by ADK-Rust"
keywords = ["adk", "agent", "autonomous", "development", "llm"]
categories = ["development-tools", "asynchronous"]
repository = "https://github.com/zavora-ai/adk-ralph"
[lib]
path = "src/lib.rs"
[[bin]]
name = "ralph"
path = "src/main.rs"
[dependencies]
# ADK-Rust 0.8.0 umbrella crate — "standard" tier gives us agents, models, tools,
# sessions, runner, telemetry, auth, guardrail, plugin, eval, graph, server, skills,
# artifacts, memory, openai, anthropic. We add extra provider features on top.
adk-rust = { version = "0.8.0", features = [
"standard",
"deepseek", "groq", "ollama",
"fireworks", "together", "mistral", "perplexity", "cerebras", "sambanova",
"bedrock", "azure-ai", "openrouter",
"mcp", "telemetry-otlp",
] }
# Async runtime
tokio = { version = "1.40", features = ["full"] }
async-trait = "0.1"
async-stream = "0.3"
futures = "0.3"
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
schemars = "0.8"
# Utilities
chrono = { version = "0.4", features = ["serde"] }
uuid = { version = "1.10", features = ["v4", "serde"] }
thiserror = "2.0"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
opentelemetry = "0.31"
# CLI and display
clap = { version = "4", features = ["derive"] }
colored = "2"
dotenvy = "0.15"
[dev-dependencies]
tempfile = "3"
proptest = "1.4"
dotenvy = "0.15"
[workspace]