-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
42 lines (38 loc) · 1.11 KB
/
Copy pathCargo.toml
File metadata and controls
42 lines (38 loc) · 1.11 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
[package]
name = "codexctl"
version = "0.5.1"
edition = "2024"
description = "Native, transparent control plane for a local Codex CLI installation"
license = "MIT OR Apache-2.0"
[workspace]
members = ["crates/codex-claude-bridge"]
resolver = "2"
[dependencies]
anyhow = "1.0.104"
chrono = { version = "0.4.45", default-features = false, features = ["clock", "serde"] }
clap = { version = "4.6.3", features = ["derive", "env", "wrap_help"] }
clap_complete = "4.6.7"
codex-claude-bridge = { path = "crates/codex-claude-bridge" }
fs2 = "0.4.3"
humantime = "2.3.0"
libc = "0.2.188"
regex = "1.13.1"
rusqlite = { version = "0.37.0", features = ["bundled"] }
serde = { version = "1.0.229", features = ["derive"] }
serde_json = "1.0.151"
sha2 = "0.11.0"
similar = "2.7.0"
tempfile = "3.27.0"
tokio = { version = "1.53.1", features = ["rt-multi-thread", "signal"] }
toml_edit = "0.23.10"
tracing-subscriber = { version = "0.3.23", features = ["env-filter", "fmt"] }
url = "2.5.8"
zeroize = "1.9.0"
[dev-dependencies]
assert_cmd = "2.1.2"
predicates = "3.1.3"
[profile.release]
codegen-units = 1
lto = true
panic = "abort"
strip = "symbols"