-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathCargo.toml
More file actions
80 lines (61 loc) · 1.65 KB
/
Cargo.toml
File metadata and controls
80 lines (61 loc) · 1.65 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
77
78
79
80
[workspace]
members = ["core", "cli"]
resolver = "2"
[workspace.package]
version = "0.0.8"
edition = "2021"
authors = ["Blushyes"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/Blushyes/coro-code"
homepage = "https://github.com/Blushyes/coro-code"
description = "Coro Code - A high-performance AI coding agent written in Rust"
keywords = ["ai", "agent", "llm", "cli", "automation"]
categories = ["command-line-utilities", "development-tools"]
# Enable minimal optimizations in debug mode
[profile.dev]
opt-level = 1
# Enable higher-level optimizations for dependencies, but not for our own code
[profile.dev.package."*"]
opt-level = 3
# Link Time Optimization: Sacrifice compile time for more performance
[profile.release]
lto = "thin"
[workspace.dependencies]
# Async runtime
tokio = { version = "1.0", features = ["full"] }
futures = "0.3"
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
# HTTP client
reqwest = { version = "0.12", features = ["json", "stream"] }
# Error handling
anyhow = "1.0"
thiserror = "2.0.16"
# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# CLI
clap = { version = "4.0", features = ["derive", "env"] }
# Terminal UI
iocraft = "0.7.11"
# iocraft = "0.7"
crossterm = "0.29"
smol = "2.0"
# Utilities
uuid = { version = "1.0", features = ["v4", "serde"] }
chrono = { version = "0.4", features = ["serde"] }
dirs = "6.0"
shellexpand = "3.0"
# Configuration
config = "0.15"
# Template engine
handlebars = "6.0"
# File system operations
walkdir = "2.0"
ignore = "0.4"
# Process execution
which = "8.0"
# CKG
tree-sitter = "0.25"
[patch.crates-io]