23 lines
464 B
TOML
23 lines
464 B
TOML
|
|
[package]
|
||
|
|
edition = "2024"
|
||
|
|
name = "app_test_support"
|
||
|
|
version = { workspace = true }
|
||
|
|
|
||
|
|
[lib]
|
||
|
|
path = "lib.rs"
|
||
|
|
|
||
|
|
[dependencies]
|
||
|
|
anyhow = { workspace = true }
|
||
|
|
assert_cmd = { workspace = true }
|
||
|
|
codex-protocol = { workspace = true }
|
||
|
|
mcp-types = { workspace = true }
|
||
|
|
serde = { workspace = true }
|
||
|
|
serde_json = { workspace = true }
|
||
|
|
tokio = { workspace = true, features = [
|
||
|
|
"io-std",
|
||
|
|
"macros",
|
||
|
|
"process",
|
||
|
|
"rt-multi-thread",
|
||
|
|
] }
|
||
|
|
wiremock = { workspace = true }
|