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-09-22 18:47:01 +02:00
|
|
|
base64 = { workspace = true }
|
|
|
|
|
icu_decimal = { workspace = true }
|
|
|
|
|
icu_locale_core = { workspace = true }
|
|
|
|
|
mcp-types = { workspace = true }
|
|
|
|
|
mime_guess = { workspace = true }
|
|
|
|
|
serde = { workspace = true, features = ["derive"] }
|
|
|
|
|
serde_json = { workspace = true }
|
|
|
|
|
serde_with = { workspace = true, features = ["macros", "base64"] }
|
|
|
|
|
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-09-22 18:47:01 +02:00
|
|
|
uuid = { workspace = true, features = ["serde", "v7"] }
|
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
|
|
|
pretty_assertions = { workspace = true }
|
|
|
|
|
tempfile = { workspace = true }
|
2025-09-08 18:05:08 -07:00
|
|
|
|
|
|
|
|
[package.metadata.cargo-shear]
|
|
|
|
|
# Required because the not imported as strum_macros in non-nightly builds.
|
|
|
|
|
ignored = ["strum"]
|