[package]
name = "codex-cli-sdk"
version = "0.0.1"
edition = "2024"
rust-version = "1.85"
description = "Rust SDK for the OpenAI Codex CLI"
license = "MIT OR Apache-2.0"
repository = "https://github.com/pomdotdev/codex-cli-sdk"
keywords = ["codex", "openai", "cli", "sdk", "ai"]
categories = ["development-tools", "api-bindings"]
include = ["src/**/*.rs", "examples/**/*.rs", "Cargo.toml", "LICENSE-MIT", "LICENSE-APACHE", "README.md"]
[dependencies]
tokio = { version = "1.0", features = ["macros", "rt-multi-thread", "process", "io-util", "sync", "time"] }
async-trait = "0.1"
futures-core = "0.3"
async-stream = "0.3"
tokio-stream = "0.1"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
thiserror = "2.0"
tracing = "0.1"
typed-builder = "0.20"
which = "7"
dirs-next = "2"
tempfile = "3"
tokio-util = "0.7"
[target.'cfg(unix)'.dependencies]
nix = { version = "0.29", features = ["signal"] }
[target.'cfg(windows)'.dependencies]
windows-sys = { version = "0.59", features = ["Win32_System_Console", "Win32_Foundation", "Win32_System_Threading"] }
[features]
default = []
testing = []
integration = []
unstable = []
[dev-dependencies]
tokio = { version = "1.0", features = ["test-util"] }