2025-07-24 12:19:46 -07:00
|
|
|
[package]
|
|
|
|
|
name = "mcp_test_support"
|
|
|
|
|
version = { workspace = true }
|
|
|
|
|
edition = "2024"
|
|
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
|
path = "lib.rs"
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
|
anyhow = "1"
|
|
|
|
|
assert_cmd = "2"
|
|
|
|
|
codex-mcp-server = { path = "../.." }
|
2025-07-31 19:46:04 -07:00
|
|
|
codex-core = { path = "../../../core" }
|
2025-07-24 12:19:46 -07:00
|
|
|
mcp-types = { path = "../../../mcp-types" }
|
|
|
|
|
pretty_assertions = "1.4.1"
|
|
|
|
|
serde_json = "1"
|
|
|
|
|
shlex = "1.3.0"
|
|
|
|
|
tempfile = "3"
|
|
|
|
|
tokio = { version = "1", features = [
|
|
|
|
|
"io-std",
|
|
|
|
|
"macros",
|
|
|
|
|
"process",
|
|
|
|
|
"rt-multi-thread",
|
|
|
|
|
] }
|
|
|
|
|
wiremock = "0.6"
|
2025-07-31 19:46:04 -07:00
|
|
|
uuid = { version = "1", features = ["serde", "v4"] }
|