mirror of
https://github.com/openai/codex.git
synced 2026-05-01 03:42:05 +03:00
26 lines
564 B
TOML
26 lines
564 B
TOML
[package]
|
|
edition = "2024"
|
|
name = "app_test_support"
|
|
version = { workspace = true }
|
|
|
|
[lib]
|
|
path = "lib.rs"
|
|
|
|
[dependencies]
|
|
anyhow = { workspace = true }
|
|
assert_cmd = { workspace = true }
|
|
base64 = { workspace = true }
|
|
chrono = { workspace = true }
|
|
codex-app-server-protocol = { workspace = true }
|
|
codex-core = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
tokio = { workspace = true, features = [
|
|
"io-std",
|
|
"macros",
|
|
"process",
|
|
"rt-multi-thread",
|
|
] }
|
|
wiremock = { workspace = true }
|
|
uuid = { workspace = true }
|