The existing `wire_format.rs` should share more types with the `codex-protocol` crate (like `AskForApproval` instead of maintaining a parallel `CodexToolCallApprovalPolicy` enum), so this PR moves `wire_format.rs` into `codex-protocol`, renaming it as `mcp-protocol.rs`. We also de-dupe types, where appropriate. --- [//]: # (BEGIN SAPLING FOOTER) Stack created with [Sapling](https://sapling-scm.com). Best reviewed with [ReviewStack](https://reviewstack.dev/openai/codex/pull/2423). * #2424 * __->__ #2423
29 lines
603 B
TOML
29 lines
603 B
TOML
[package]
|
|
edition = "2024"
|
|
name = "mcp_test_support"
|
|
version = { workspace = true }
|
|
|
|
[lib]
|
|
path = "lib.rs"
|
|
|
|
[dependencies]
|
|
anyhow = "1"
|
|
assert_cmd = "2"
|
|
codex-core = { path = "../../../core" }
|
|
codex-mcp-server = { path = "../.." }
|
|
codex-protocol = { path = "../../../protocol" }
|
|
mcp-types = { path = "../../../mcp-types" }
|
|
pretty_assertions = "1.4.1"
|
|
serde = { version = "1" }
|
|
serde_json = "1"
|
|
shlex = "1.3.0"
|
|
tempfile = "3"
|
|
tokio = { version = "1", features = [
|
|
"io-std",
|
|
"macros",
|
|
"process",
|
|
"rt-multi-thread",
|
|
] }
|
|
uuid = { version = "1", features = ["serde", "v4"] }
|
|
wiremock = "0.6"
|