-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
55 lines (49 loc) · 1.3 KB
/
Cargo.toml
File metadata and controls
55 lines (49 loc) · 1.3 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
[package]
name = "cocode"
version = "0.1.0"
edition = "2024"
[[bin]]
name = "cocode"
path = "src/main.rs"
[profile.dev]
incremental = true
debug = 1
codegen-units = 256
[profile.release]
opt-level = 3
lto = "thin"
codegen-units = 16
strip = "symbols"
[dependencies]
color-eyre = "0.6.5"
ratatui = "0.29.0"
unicode-width = "0.1.13"
edtui = {path= "./crates/edtui"}
rand = "0.8"
arboard = "3.6.1"
agent_core = {path = "./crates/agent_core"}
markdown-renderer = {path = "./crates/markdown-renderer"}
tokio = { version = "1.0", features = ["macros", "rt-multi-thread", "sync", "time", "process"] }
serde_json = "1.0"
serde_yaml = "0.9"
serde = { version = "1.0", features = ["derive"] }
sha2 = "0.10"
dirs = "5.0"
uuid = { version = "1.10", features = ["v4", "serde"] }
async-trait = "0.1"
anyhow = "1.0"
similar = "2.5"
syntect = { version = "5", default-features = false, features = ["default-fancy"] }
base64 = "0.22"
futures = "0.3"
reqwest = { version = "0.12", default-features = false, features = ["blocking", "json", "rustls-tls"] }
keyring = "3.6"
[dev-dependencies]
chrono = "0.4"
agent_protocol = { path = "./crates/agent_protocol" }
insta = "1.38"
[features]
syntax-highlighting = ["edtui/syntax-highlighting"]
cuda = ["agent_core/cuda"]
flash-attn = ["cuda", "agent_core/flash-attn"]
cudnn = ["cuda", "agent_core/cudnn"]