-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
28 lines (25 loc) · 780 Bytes
/
Cargo.toml
File metadata and controls
28 lines (25 loc) · 780 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
[package]
name = "asi-code"
version = "0.3.0"
edition = "2021"
authors = ["ASI Code Team"]
description = "ASI Code terminal agent - Rust coding assistant CLI with provider-agnostic workflow"
license = "MIT"
repository = "https://github.com/AloneMath/asi-code"
readme = "README.md"
[[bin]]
name = "asi"
path = "src/main.rs"
[dependencies]
clap = { version = "4.5", features = ["derive"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
reqwest = { version = "0.12", features = ["blocking", "json", "rustls-tls"] }
glob = "0.3"
regex = "1"
sha2 = "0.10"
rpassword = "7.3"
axum = { version = "0.7", features = ["json"] }
tokio = { version = "1", features = ["rt-multi-thread", "macros", "net"] }
# Error handling - keep this as it's useful
thiserror = "1.0"