rust-sdk/examples/clients/Cargo.toml
jokemanfire 0a2f13a1f4
style: fmt the project (#54)
add rustfmt.toml

Signed-off-by: jokemanfire <hu.dingyang@zte.com.cn>
2025-03-28 23:50:46 +08:00

42 lines
763 B
TOML

cargo-features = ["edition2024"]
[package]
name = "mcp-client-examples"
version = "0.1.5"
edition = "2024"
publish = false
[dependencies]
rmcp = { path = "../../crates/rmcp", features = [
"client",
"transport-sse",
"transport-child-process",
"tower"
] }
tokio = { version = "1", features = ["full"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
rand = "0.8"
futures = "0.3"
anyhow = "1.0"
tower = "0.5"
[[example]]
name = "sse"
path = "src/sse.rs"
[[example]]
name = "std_io"
path = "src/std_io.rs"
[[example]]
name = "everything_stdio"
path = "src/everything_stdio.rs"
[[example]]
name = "collection"
path = "src/collection.rs"