-
Notifications
You must be signed in to change notification settings - Fork 510
Expand file tree
/
Copy pathCargo.toml
More file actions
59 lines (48 loc) · 1.13 KB
/
Cargo.toml
File metadata and controls
59 lines (48 loc) · 1.13 KB
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
53
54
55
56
57
58
59
[package]
name = "mcp-client-examples"
version = "0.1.5"
edition = "2024"
publish = false
[dependencies]
rmcp = { workspace = true, features = [
"client",
"reqwest",
"transport-streamable-http-client-reqwest",
"transport-child-process",
"tower",
"auth"
] }
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.9"
futures = "0.3"
anyhow = "1.0"
url = "2.4"
tower = "0.5"
axum = "0.8"
reqwest = "0.13"
clap = { version = "4.0", features = ["derive"] }
[[example]]
name = "clients_git_stdio"
path = "src/git_stdio.rs"
[[example]]
name = "clients_streamable_http"
path = "src/streamable_http.rs"
[[example]]
name = "clients_everything_stdio"
path = "src/everything_stdio.rs"
[[example]]
name = "clients_collection"
path = "src/collection.rs"
[[example]]
name = "clients_oauth_client"
path = "src/auth/oauth_client.rs"
[[example]]
name = "clients_sampling_stdio"
path = "src/sampling_stdio.rs"
[[example]]
name = "clients_progress_client"
path = "src/progress_client.rs"