mirror of
https://github.com/pchuan98/codex.git
synced 2026-07-01 00:31:56 +08:00
4a15ebc1ca
Once this lands, we can update our brew formula to use `generate_completions_from_executable()` like so: https://github.com/Homebrew/homebrew-core/blob/905238ff7f8f48fdc6f4ae2a9fbdd364bf7c7f9d/Formula/h/hgrep.rb#L21-L25
38 lines
771 B
TOML
38 lines
771 B
TOML
[package]
|
|
name = "codex-cli"
|
|
version = { workspace = true }
|
|
edition = "2024"
|
|
|
|
[[bin]]
|
|
name = "codex"
|
|
path = "src/main.rs"
|
|
|
|
[lib]
|
|
name = "codex_cli"
|
|
path = "src/lib.rs"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
anyhow = "1"
|
|
clap = { version = "4", features = ["derive"] }
|
|
clap_complete = "4"
|
|
codex-core = { path = "../core" }
|
|
codex-common = { path = "../common", features = ["cli"] }
|
|
codex-exec = { path = "../exec" }
|
|
codex-login = { path = "../login" }
|
|
codex-linux-sandbox = { path = "../linux-sandbox" }
|
|
codex-mcp-server = { path = "../mcp-server" }
|
|
codex-tui = { path = "../tui" }
|
|
serde_json = "1"
|
|
tokio = { version = "1", features = [
|
|
"io-std",
|
|
"macros",
|
|
"process",
|
|
"rt-multi-thread",
|
|
"signal",
|
|
] }
|
|
tracing = "0.1.41"
|
|
tracing-subscriber = "0.3.19"
|