Files
codex/codex-rs/code-mode/Cargo.toml
dank-openai 4c474150a8 build: make local codex installs reliable
Pin the ICU calendar dependency needed by v8 path installs without --locked, keep cargo-shear aware of the intentional dependency, and relax the release profile for faster local cargo install loops.

(cherry picked from commit 2607a7c329a73ffb5e2251ed51eeeec3f74c5920)
(cherry picked from commit b28e7f05492a3f70ffad04832650a6e11ed6121a)
2026-05-02 10:49:46 -04:00

33 lines
911 B
TOML

[package]
edition.workspace = true
license.workspace = true
name = "codex-code-mode"
version.workspace = true
[lib]
doctest = false
name = "codex_code_mode"
path = "src/lib.rs"
[lints]
workspace = true
[dependencies]
async-channel = { workspace = true }
async-trait = { workspace = true }
codex-protocol = { workspace = true }
deno_core_icudata = { workspace = true }
serde = { workspace = true, features = ["derive"] }
serde_json = { workspace = true }
tokio = { workspace = true, features = ["macros", "rt", "sync", "time"] }
tokio-util = { workspace = true, features = ["rt"] }
tracing = { workspace = true }
# v8 146.x depends on temporal_rs 0.1.2, which uses ICU unstable
# calendar APIs. This direct dependency keeps path installs without
# --locked on the compatible ICU minor.
icu_calendar = { workspace = true }
v8 = { workspace = true }
[dev-dependencies]
pretty_assertions = { workspace = true }