mirror of
https://github.com/openai/codex.git
synced 2026-05-04 11:26:33 +00:00
24 lines
727 B
TOML
24 lines
727 B
TOML
[package]
|
|
name = "codex-infty"
|
|
version = { workspace = true }
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
anyhow = { workspace = true }
|
|
chrono = { workspace = true, features = ["serde"] }
|
|
codex-core = { path = "../core" }
|
|
codex-protocol = { path = "../protocol" }
|
|
dirs = { workspace = true }
|
|
serde = { workspace = true, features = ["derive"] }
|
|
serde_json = { workspace = true }
|
|
tempfile = { workspace = true }
|
|
tokio = { workspace = true, features = ["macros", "rt", "rt-multi-thread", "signal"] }
|
|
tokio-stream = { workspace = true }
|
|
tracing = { workspace = true, features = ["log"] }
|
|
futures = "0.3"
|
|
|
|
[dev-dependencies]
|
|
core_test_support = { path = "../core/tests/common" }
|
|
tempfile = { workspace = true }
|
|
wiremock = { workspace = true }
|