-
Notifications
You must be signed in to change notification settings - Fork 502
Expand file tree
/
Copy pathCargo.toml
More file actions
28 lines (26 loc) · 754 Bytes
/
Cargo.toml
File metadata and controls
28 lines (26 loc) · 754 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
[package]
name = "wasi-mcp-example"
edition = { workspace = true }
version = { workspace = true }
authors = { workspace = true }
license = { workspace = true }
repository = { workspace = true }
description = { workspace = true }
keywords = { workspace = true }
homepage = { workspace = true }
categories = { workspace = true }
readme = { workspace = true }
publish = false
[lib]
crate-type = ["cdylib"]
[dependencies]
wasi = { version = "0.14.2"}
tokio = { version = "1", features = ["rt", "io-util", "sync", "macros", "time"] }
rmcp = { workspace = true, features = ["server", "macros"] }
serde = { version = "1", features = ["derive"]}
tracing-subscriber = { version = "0.3", features = [
"env-filter",
"std",
"fmt",
] }
tracing = "0.1"