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-08-22 15:18:54 -07:00
|
|
|
base64 = "0.22.1"
|
2025-09-08 14:48:48 -07:00
|
|
|
icu_decimal = "2.0.0"
|
|
|
|
|
icu_locale_core = "2.0.0"
|
2025-08-15 12:44:40 -07:00
|
|
|
mcp-types = { path = "../mcp-types" }
|
2025-08-22 15:18:54 -07:00
|
|
|
mime_guess = "2.0.5"
|
2025-08-15 12:44:40 -07:00
|
|
|
serde = { version = "1", features = ["derive"] }
|
|
|
|
|
serde_json = "1"
|
2025-09-04 10:38:00 -07:00
|
|
|
serde_with = { version = "3.14.0", features = ["macros", "base64"] }
|
2025-08-15 12:44:40 -07:00
|
|
|
strum = "0.27.2"
|
|
|
|
|
strum_macros = "0.27.2"
|
2025-09-08 14:48:48 -07:00
|
|
|
sys-locale = "0.3.2"
|
2025-08-22 15:18:54 -07:00
|
|
|
tracing = "0.1.41"
|
2025-09-18 07:37:03 -07:00
|
|
|
ts-rs = { version = "11", features = [
|
|
|
|
|
"uuid-impl",
|
|
|
|
|
"serde-json-impl",
|
|
|
|
|
"no-serde-warnings",
|
|
|
|
|
] }
|
|
|
|
|
uuid = { version = "1", features = ["serde", "v7"] }
|
2025-08-18 09:36:57 -07:00
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
|
pretty_assertions = "1.4.1"
|
2025-09-09 00:11:48 -07:00
|
|
|
tempfile = "3"
|
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"]
|