-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathCargo.toml
More file actions
41 lines (37 loc) · 1.08 KB
/
Cargo.toml
File metadata and controls
41 lines (37 loc) · 1.08 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
[package]
name = "kota"
version = "0.1.3"
edition = "2021"
authors = ["Stepfen Shawn <m18824909883@163.com>"]
license = "MIT"
description = "A lightweight, highly extensible ai code agent, built in Rust."
repository = "https://github.com/StepfenShawn/kota"
documentation = "https://docs.rs/kota"
readme = "README.md"
keywords = ["ai", "agent", "llm", "code-assistant", "automation"]
categories = ["development-tools", "command-line-utilities"]
[[bin]]
name = "kota"
path = "src/main.rs"
[lib]
name = "kota"
path = "src/lib.rs"
[dependencies]
tokio = { version = "1.0", features = ["full"] }
anyhow = "1.0"
rustyline = "14.0"
colored = "3.0.0"
rig-core = "0.30.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
thiserror = "1.0"
patch-apply = "0.8.3"
regex = "1.0"
walkdir = "2.0"
chrono = { version = "0.4", features = ["serde"] }
ignore = "0.4"
names = { version = "0.14.0", default-features = false }
mlua = { version = "0.9", features = ["lua54", "vendored"] }
rmcp = { version = "0.14.0", features = ["client", "transport-child-process"] }
[dev-dependencies]
tempfile = "3.0"