-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (33 loc) · 956 Bytes
/
Cargo.toml
File metadata and controls
37 lines (33 loc) · 956 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
29
30
31
32
33
34
35
36
37
[package]
name = "agent-client-protocol-test"
version = "0.11.0"
edition.workspace = true
authors.workspace = true
license.workspace = true
repository.workspace = true
homepage.workspace = true
description = "Test utilities and mock implementations for the Agent Client Protocol"
publish = false
[[bin]]
name = "mcp-echo-server"
path = "src/bin/mcp_echo_server.rs"
[[bin]]
name = "testy"
path = "src/bin/testy.rs"
[dependencies]
agent-client-protocol.workspace = true
agent-client-protocol-tokio.workspace = true
yopo.workspace = true
anyhow.workspace = true
futures.workspace = true
rmcp = { workspace = true, features = ["server", "client", "transport-child-process", "transport-streamable-http-client-reqwest"] }
schemars.workspace = true
serde.workspace = true
serde_json.workspace = true
tokio.workspace = true
tokio-util.workspace = true
tracing.workspace = true
tracing-subscriber.workspace = true
uuid.workspace = true
[lints]
workspace = true