## Description Changes default CLI spinner to pulsing dot https://github.com/user-attachments/assets/b81225d6-6655-4ead-8cb1-d6568a603d5b ## Tests Passes CI --------- Co-authored-by: Fouad Matin <fouad@openai.com>
39 lines
1.0 KiB
TOML
39 lines
1.0 KiB
TOML
[package]
|
|
edition = "2024"
|
|
name = "codex-cloud-tasks"
|
|
version = { workspace = true }
|
|
|
|
[lib]
|
|
name = "codex_cloud_tasks"
|
|
path = "src/lib.rs"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
anyhow = "1"
|
|
base64 = "0.22"
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
clap = { version = "4", features = ["derive"] }
|
|
codex-cloud-tasks-client = { path = "../cloud-tasks-client", features = [
|
|
"mock",
|
|
"online",
|
|
] }
|
|
codex-common = { path = "../common", features = ["cli"] }
|
|
codex-core = { path = "../core" }
|
|
codex-login = { path = "../login" }
|
|
codex-tui = { path = "../tui" }
|
|
crossterm = { version = "0.28.1", features = ["event-stream"] }
|
|
ratatui = { version = "0.29.0" }
|
|
reqwest = { version = "0.12", features = ["json"] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
|
|
tokio-stream = "0.1.17"
|
|
tracing = { version = "0.1.41", features = ["log"] }
|
|
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }
|
|
unicode-width = "0.1"
|
|
|
|
[dev-dependencies]
|
|
async-trait = "0.1"
|