forked from EmilLindfors/mcp
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
52 lines (47 loc) · 1.3 KB
/
Cargo.toml
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
[package]
name = "mcp_rs"
description = "a library for making MCP (Model Context Protocol) compatible programs with rust"
version = "0.1.0"
edition = "2021"
authors = ["Emil Lindfors <[email protected]>"]
keywords = ["gen", "anthropic", "mcp_protocol", "mcp"]
categories = ["api-bindings"]
license = "MIT"
[dependencies]
async-trait = "0.1.83"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tokio = { version = "1.41.1", features = ["full"] }
thiserror = "2.0.3"
tracing = "0.1.40"
tokio-util = "0.7.12"
jsonrpc-core = "18.0.0"
warp = "0.3.7"
jsonrpc-derive = "18.0.0"
futures = "0.3.31"
uuid = { version = "1.11.0", features = ["v4"] }
url = "2.5.4"
base64 = "0.22.1"
async-stream = "0.3.6"
mime_guess = "2.0.5"
tracing-subscriber = { version ="0.3.18", features = ["env-filter"]}
config = "0.14.1"
clap = { version = "4.5.21", features = ["derive"] }
reqwest = { version = "0.12.9", features = ["json"]}
reqwest-eventsource = "0.6.0"
mime = "0.3.17"
tracing-core = "0.1.33"
async-recursion = "1.1.1"
[[bin]]
name = "server"
path = "bin/server.rs"
[[bin]]
name = "client"
path = "bin/client.rs"
[lib]
name = "mcp_rs"
path = "src/lib.rs"
[dev-dependencies]
tempfile = "3.14.0"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
tokio = { version = "1.0", features = ["full", "test-util"] }