mirror of
https://github.com/openai/codex.git
synced 2026-04-24 22:54:54 +00:00
57 lines
1.4 KiB
TOML
57 lines
1.4 KiB
TOML
[package]
|
|
name = "codex-session"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[[bin]]
|
|
name = "codex-session"
|
|
path = "src/main.rs"
|
|
|
|
[lib]
|
|
name = "codex_session"
|
|
path = "src/lib.rs"
|
|
|
|
[dependencies]
|
|
anyhow = "1"
|
|
clap = { version = "4", features = ["derive"] }
|
|
codex-core = { path = "../core" }
|
|
tokio = { version = "1", features = [
|
|
"io-std",
|
|
"macros",
|
|
"process",
|
|
"rt-multi-thread",
|
|
"signal",
|
|
] }
|
|
tracing = { version = "0.1.41", features = ["log"] }
|
|
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }
|
|
uuid = { version = "1", features = ["v4"] }
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1"
|
|
dirs = "6"
|
|
sysinfo = "0.29"
|
|
tabwriter = "1.3"
|
|
names = { version = "0.14", default-features = false }
|
|
nix = { version = "0.28", default-features = false, features = ["process", "signal", "term", "fs"] }
|
|
petname = "2.0.2"
|
|
rand = "0.9.1"
|
|
|
|
# Re-use the codex-exec library for its CLI definition
|
|
codex_exec = { package = "codex-exec", path = "../exec" }
|
|
codex_repl = { package = "codex-repl", path = "../repl" }
|
|
humansize = "2.1.3"
|
|
command-group = { version = "5.0.1", features = ["with-tokio"] }
|
|
|
|
[dev-dependencies]
|
|
tempfile = "3"
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
libc = "0.2"
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
windows-sys = { version = "0.48", features = [
|
|
"Win32_Foundation",
|
|
"Win32_System_Console",
|
|
"Win32_System_Threading",
|
|
] }
|