-
-
Notifications
You must be signed in to change notification settings - Fork 113
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (29 loc) · 871 Bytes
/
Cargo.toml
File metadata and controls
32 lines (29 loc) · 871 Bytes
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
[package]
name = "yoyo-agent"
version = "0.1.9"
edition = "2021"
description = "A coding agent that evolves itself. Born as 200 lines of Rust, growing up in public."
license = "MIT"
repository = "https://github.com/yologdev/yoyo-evolve"
homepage = "https://yologdev.github.io/yoyo-evolve"
documentation = "https://yologdev.github.io/yoyo-evolve/book/"
readme = "README.md"
keywords = ["agent", "cli", "coding-agent", "ai", "llm"]
categories = ["command-line-utilities", "development-tools"]
[[bin]]
name = "yoyo"
path = "src/main.rs"
[dependencies]
yoagent = { version = "0.8", features = ["openapi"] }
tokio = { version = "1", features = ["full"] }
serde_json = "1"
serde = { version = "1", features = ["derive"] }
rustyline = "15"
async-trait = "0.1"
glob = "0.3"
regex = "1"
base64 = "0.22"
tokio-util = "0.7.18"
[dev-dependencies]
serial_test = "3"
tempfile = "3"