-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
44 lines (41 loc) · 1.59 KB
/
Copy pathCargo.toml
File metadata and controls
44 lines (41 loc) · 1.59 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
[package]
name = "agentbox-mcp"
version = "0.1.0"
edition = "2024"
[dependencies]
anyhow = "1"
async-trait = "0.1"
axum = "0.8"
base64 = "0.22"
chrono = { version = "0.4", features = ["serde"] }
clap = { version = "4", features = ["derive", "env"] }
codex-apply-patch = { git = "https://github.com/openai/codex", rev = "3dc278b68ea476e03d54a605df8fe52d4a0cef88", package = "codex-apply-patch" }
codex-exec-server = { git = "https://github.com/openai/codex", rev = "3dc278b68ea476e03d54a605df8fe52d4a0cef88", package = "codex-exec-server" }
codex-utils-absolute-path = { git = "https://github.com/openai/codex", rev = "3dc278b68ea476e03d54a605df8fe52d4a0cef88", package = "codex-utils-absolute-path" }
futures = "0.3"
http = "1"
jsonwebtoken = "10"
libc = "0.2"
portable-pty = "0.9"
rand = "0.9"
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
sha2 = "0.10"
shell-words = "1"
tempfile = "3"
thiserror = "2"
tokio = { version = "1", features = ["full"] }
toml = "0.9"
tower = "0.5"
tower-http = { version = "0.6", features = ["trace"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] }
uuid = { version = "1", features = ["v4"] }
walkdir = "2"
[dev-dependencies]
assert_cmd = "2"
predicates = "3"
[patch.crates-io]
tokio-tungstenite = { git = "https://github.com/openai-oss-forks/tokio-tungstenite", rev = "132f5b39c862e3a970f731d709608b3e6276d5f6" }
tungstenite = { git = "https://github.com/openai-oss-forks/tungstenite-rs", rev = "9200079d3b54a1ff51072e24d81fd354f085156f" }