-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (28 loc) · 965 Bytes
/
Copy pathCargo.toml
File metadata and controls
30 lines (28 loc) · 965 Bytes
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
[package]
name = "codex-code-router"
version = "1.0.0"
edition = "2021"
license = "MIT"
description = "Minimal Codex CLI adapter for GitHub Copilot's Responses API endpoint."
repository = "https://github.com/dpearson2699/codex-code-router"
keywords = ["codex", "copilot", "proxy", "responses"]
categories = ["command-line-utilities", "development-tools"]
[dependencies]
anyhow = "1"
axum = "0.8"
bytes = "1"
clap = { version = "4", features = ["derive"] }
fastrand = "2"
futures-util = "0.3"
http = "1"
httpdate = "1"
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls", "stream"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
thiserror = "2"
tokio = { version = "1", features = ["macros", "net", "rt-multi-thread", "signal", "time"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt"] }
uuid = { version = "1", features = ["v4"] }
[dev-dependencies]
tempfile = "3"