35 lines
666 B
TOML
35 lines
666 B
TOML
|
|
[package]
|
||
|
|
edition = "2024"
|
||
|
|
name = "codex-rmcp-client"
|
||
|
|
version = { workspace = true }
|
||
|
|
|
||
|
|
[lints]
|
||
|
|
workspace = true
|
||
|
|
|
||
|
|
[dependencies]
|
||
|
|
anyhow = "1"
|
||
|
|
mcp-types = { path = "../mcp-types" }
|
||
|
|
rmcp = { version = "0.7.0", default-features = false, features = [
|
||
|
|
"base64",
|
||
|
|
"client",
|
||
|
|
"macros",
|
||
|
|
"schemars",
|
||
|
|
"server",
|
||
|
|
"transport-child-process",
|
||
|
|
] }
|
||
|
|
serde = { version = "1", features = ["derive"] }
|
||
|
|
serde_json = "1"
|
||
|
|
tokio = { version = "1", features = [
|
||
|
|
"io-util",
|
||
|
|
"macros",
|
||
|
|
"process",
|
||
|
|
"rt-multi-thread",
|
||
|
|
"sync",
|
||
|
|
"io-std",
|
||
|
|
"time",
|
||
|
|
] }
|
||
|
|
tracing = { version = "0.1.41", features = ["log"] }
|
||
|
|
|
||
|
|
[dev-dependencies]
|
||
|
|
pretty_assertions = "1.4.1"
|