mirror of
https://github.com/openai/codex.git
synced 2026-08-23 13:09:46 +00:00
## Why `codex-http-client` is the intended owner of direct `reqwest` usage. ## What changed - Route agent identity registration, task registration, and JWKS requests through `HttpClient`. - Preserve retry classification using `HttpError` and `http::StatusCode`. - Remove `codex-agent-identity` from the temporary direct-`reqwest` dependency exceptions. GitOrigin-RevId: 7445c9f2521e6d8ef0969a1483c81f797bf91316
32 lines
737 B
TOML
32 lines
737 B
TOML
[package]
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
name = "codex-agent-identity"
|
|
version.workspace = true
|
|
|
|
[lib]
|
|
doctest = false
|
|
name = "codex_agent_identity"
|
|
path = "src/lib.rs"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
anyhow = { workspace = true }
|
|
base64 = { workspace = true }
|
|
chrono = { workspace = true }
|
|
codex-http-client = { workspace = true }
|
|
codex-protocol = { workspace = true }
|
|
crypto_box = { workspace = true }
|
|
ed25519-dalek = { workspace = true }
|
|
http = { workspace = true }
|
|
jsonwebtoken = { workspace = true }
|
|
rand = { workspace = true }
|
|
serde = { workspace = true, features = ["derive"] }
|
|
serde_json = { workspace = true }
|
|
sha2 = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
pretty_assertions = { workspace = true }
|