-
Notifications
You must be signed in to change notification settings - Fork 510
Expand file tree
/
Copy pathCargo.toml
More file actions
66 lines (58 loc) · 1.38 KB
/
Cargo.toml
File metadata and controls
66 lines (58 loc) · 1.38 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
60
61
62
63
64
65
66
[package]
name = "transport"
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
[package.metadata.docs.rs]
all-features = true
[dependencies]
rmcp = { workspace = true, features = ["server", "client"] }
tokio = { version = "1", features = [
"macros",
"rt",
"rt-multi-thread",
"io-std",
"net",
"fs",
"time",
] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
anyhow = "1.0"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = [
"env-filter",
"std",
"fmt",
] }
futures = "0.3"
rand = { version = "0.10" }
schemars = { version = "1.0", optional = true }
hyper = { version = "1", features = ["client", "server", "http1"] }
hyper-util = { version = "0.1", features = ["tokio"] }
tokio-tungstenite = "0.29.0"
reqwest = { version = "0.13.2" }
pin-project-lite = "0.2"
[[example]]
name = "tcp"
path = "src/tcp.rs"
[[example]]
name = "http_upgrade"
path = "src/http_upgrade.rs"
[[example]]
name = "unix_socket"
path = "src/unix_socket.rs"
[[example]]
name = "websocket"
path = "src/websocket.rs"
[[example]]
name = "named-pipe"
path = "src/named-pipe.rs"