forked from zed-industries/codex-acp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
39 lines (36 loc) · 1.56 KB
/
Cargo.toml
File metadata and controls
39 lines (36 loc) · 1.56 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
[package]
name = "codex-acp"
version = "0.3.9"
edition = "2024"
authors = ["Zed <hi@zed.dev>"]
license = "Apache-2.0"
description = "An ACP-compatible coding agent powered by Codex"
repository = "https://github.com/zed-industries/codex-acp"
homepage = "https://github.com/zed-industries/codex-acp"
[[bin]]
name = "codex-acp"
path = "src/main.rs"
[lib]
name = "codex_acp"
path = "src/lib.rs"
[dependencies]
agent-client-protocol = { version = "0.6.0", features = ["unstable"] }
anyhow = "1"
async-trait = "0.1"
codex-apply-patch = { git = "https://github.com/zed-industries/codex", branch = "acp" }
codex-arg0 = { git = "https://github.com/zed-industries/codex", branch = "acp" }
codex-common = { git = "https://github.com/zed-industries/codex", branch = "acp", features = ["cli"] }
codex-core = { git = "https://github.com/zed-industries/codex", branch = "acp" }
codex-mcp-server = { git = "https://github.com/zed-industries/codex", branch = "acp" }
codex-protocol = { git = "https://github.com/zed-industries/codex", branch = "acp" }
codex-login = { git = "https://github.com/zed-industries/codex", branch = "acp" }
itertools = "0.14.0"
mcp-types = { git = "https://github.com/zed-industries/codex", branch = "acp" }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tokio = { version = "1", features = ["rt-multi-thread", "macros", "io-std", "io-util"] }
tokio-util = { version = "0.7", features = ["compat"] }
tracing = { version = "0.1", features = ["log"] }
tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt"] }
regex-lite = "0.1.8"
shlex = "1.3.0"