forked from cola-io/codex-acp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (37 loc) · 1.33 KB
/
Copy pathCargo.toml
File metadata and controls
38 lines (37 loc) · 1.33 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
[package]
name = "codex-acp"
authors = ["<gawaine2111@gmail.com>"]
version = "0.1.4"
edition = "2024"
description = "ACP-compatible agent that bridges the OpenAI Codex runtime with ACP clients over stdio."
readme = "README.md"
# Match the pinned toolchain in rust-toolchain.toml
rust-version = "1.90"
[dependencies]
agent-client-protocol = { version = "0.4.4" }
anyhow = { version = "1.0.100" }
async-trait = { version = "0.1" }
codex-common = { git = "https://github.com/openai/codex", branch = "main", features = [
"cli",
] }
codex-core = { git = "https://github.com/openai/codex", branch = "main" }
codex-protocol = { git = "https://github.com/openai/codex", branch = "main" }
codex-app-server-protocol = { git = "https://github.com/openai/codex", branch = "main" }
mcp-types = { git = "https://github.com/openai/codex", branch = "main" }
tokio = { version = "1.47.1", features = [
"macros",
"rt",
"time",
"io-std",
"io-util",
"net",
"process",
"sync",
] }
tokio-util = { version = "0.7.16", features = ["compat"] }
serde_json = { version = "1.0.145", features = ["raw_value"] }
serde = { version = "1.0", features = ["derive"] }
diffy = { version = "0.4.2" }
tracing = { version = "0.1", features = ["log"] }
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
uuid = { version = "1", features = ["v4"] }