Files
llmx/codex-rs/mcp-client/Cargo.toml
jcoens-openai a080d7b0fd Update submodules version to come from the workspace (#850)
Tie the version of submodules to the workspace version.
2025-05-07 10:08:06 -07:00

23 lines
514 B
TOML

[package]
name = "codex-mcp-client"
version = { workspace = true }
edition = "2024"
[dependencies]
anyhow = "1"
mcp-types = { path = "../mcp-types" }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tracing = { version = "0.1.41", features = ["log"] }
tracing-subscriber = { version = "0.3", features = ["fmt", "env-filter"] }
tokio = { version = "1", features = [
"io-util",
"macros",
"process",
"rt-multi-thread",
"sync",
] }
[dev-dependencies]
pretty_assertions = "1.4.1"