chore: extract readiness in a dedicated utils crate (#4140)

Create an `utils` directory for the small utils crates
This commit is contained in:
jif-oai
2025-09-24 11:15:54 +01:00
committed by GitHub
parent af6304c641
commit 5b910f1f05
6 changed files with 38 additions and 18 deletions

View File

@@ -0,0 +1,16 @@
[package]
name = "codex-utils-readiness"
version.workspace = true
edition.workspace = true
[dependencies]
async-trait = { workspace = true }
thiserror = { workspace = true }
time = { workspace = true }
tokio = { workspace = true, features = ["sync", "time"] }
[dev-dependencies]
tokio = { workspace = true, features = ["macros", "rt", "rt-multi-thread"] }
[lints]
workspace = true