mirror of
https://github.com/openai/codex.git
synced 2026-04-29 17:06:51 +00:00
@oai-ragona and I discussed it, and we feel the REPL crate has served its purpose, so we're going to delete the code and future archaeologists can find it in Git history.
34 lines
606 B
TOML
34 lines
606 B
TOML
[package]
|
|
name = "codex-cli"
|
|
version = { workspace = true }
|
|
edition = "2021"
|
|
|
|
[[bin]]
|
|
name = "codex"
|
|
path = "src/main.rs"
|
|
|
|
[[bin]]
|
|
name = "codex-linux-sandbox"
|
|
path = "src/linux-sandbox/main.rs"
|
|
|
|
[lib]
|
|
name = "codex_cli"
|
|
path = "src/lib.rs"
|
|
|
|
[dependencies]
|
|
anyhow = "1"
|
|
clap = { version = "4", features = ["derive"] }
|
|
codex-core = { path = "../core" }
|
|
codex-exec = { path = "../exec" }
|
|
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"
|