2025-08-15 12:44:40 -07:00
|
|
|
[package]
|
|
|
|
|
edition = "2024"
|
|
|
|
|
name = "codex-protocol"
|
|
|
|
|
version = { workspace = true }
|
|
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
|
name = "codex_protocol"
|
|
|
|
|
path = "src/lib.rs"
|
|
|
|
|
|
|
|
|
|
[lints]
|
|
|
|
|
workspace = true
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
2025-10-29 12:11:44 +00:00
|
|
|
codex-git = { workspace = true }
|
2025-10-27 10:55:29 +00:00
|
|
|
|
2025-09-22 18:47:01 +02:00
|
|
|
base64 = { workspace = true }
|
2025-10-27 16:58:10 +00:00
|
|
|
codex-utils-image = { workspace = true }
|
2025-09-22 18:47:01 +02:00
|
|
|
icu_decimal = { workspace = true }
|
|
|
|
|
icu_locale_core = { workspace = true }
|
2025-10-29 20:46:45 +00:00
|
|
|
icu_provider = { workspace = true, features = ["sync"] }
|
2025-09-22 18:47:01 +02:00
|
|
|
mcp-types = { workspace = true }
|
|
|
|
|
mime_guess = { workspace = true }
|
|
|
|
|
serde = { workspace = true, features = ["derive"] }
|
|
|
|
|
serde_json = { workspace = true }
|
|
|
|
|
serde_with = { workspace = true, features = ["macros", "base64"] }
|
2025-10-20 11:45:11 -07:00
|
|
|
schemars = { workspace = true }
|
2025-09-22 18:47:01 +02:00
|
|
|
strum = { workspace = true }
|
|
|
|
|
strum_macros = { workspace = true }
|
|
|
|
|
sys-locale = { workspace = true }
|
|
|
|
|
tracing = { workspace = true }
|
|
|
|
|
ts-rs = { workspace = true, features = [
|
2025-09-18 07:37:03 -07:00
|
|
|
"uuid-impl",
|
|
|
|
|
"serde-json-impl",
|
|
|
|
|
"no-serde-warnings",
|
|
|
|
|
] }
|
2025-10-20 13:34:44 -07:00
|
|
|
uuid = { workspace = true, features = ["serde", "v7", "v4"] }
|
2025-08-18 09:36:57 -07:00
|
|
|
|
|
|
|
|
[dev-dependencies]
|
2025-09-23 13:31:36 -07:00
|
|
|
anyhow = { workspace = true }
|
2025-09-22 18:47:01 +02:00
|
|
|
tempfile = { workspace = true }
|
2025-09-08 18:05:08 -07:00
|
|
|
|
|
|
|
|
[package.metadata.cargo-shear]
|
2025-10-29 20:46:45 +00:00
|
|
|
# Required because:
|
|
|
|
|
# `icu_provider`: contains a required `sync` feature for `icu_decimal`
|
|
|
|
|
# `strum`: as strum_macros in non-nightly builds
|
|
|
|
|
ignored = ["icu_provider", "strum"]
|