12 lines
288 B
TOML
12 lines
288 B
TOML
[package]
|
|
name = "calculator-client"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
rmcp = { version = "1.4.0", features = ["client", "transport-child-process"] }
|
|
serde_json = "1.0.141"
|
|
tokio = { version = "1.46.1", features = ["rt-multi-thread"] }
|
|
|
|
[dev-dependencies]
|
|
slab = "0.4.11" |