forked from agentgateway/agentgateway
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
116 lines (104 loc) · 2.94 KB
/
Copy pathCargo.toml
File metadata and controls
116 lines (104 loc) · 2.94 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
[package]
name = "agentgateway"
version = "0.4.12"
edition = "2024"
rust-version = "1.85"
[workspace]
resolver = "2"
members = [
"a2a-sdk"
]
[features]
default = []
gcp = ["dep:google-cloud-auth"]
aws = ["dep:aws-config", "dep:aws-sdk-lambda", "dep:aws-smithy-runtime-api"]
ui = ["dep:include_dir", "dep:tower-serve-static"]
[dependencies]
arcstr = { version = "1.2", features = ["serde"] }
async-stream = "0.3"
rmcp = { git = "https://github.com/modelcontextprotocol/rust-sdk", features = [
"client",
"transport-sse",
"transport-child-process",
], rev="6a423048fa7f3da99190f28bcb2d6d8cdbb99bbe" }
sse-stream = "0.1.3"
tokio = { version = "1.42", features = ["full"] }
tokio-rustls = "0.26"
rustls = {version = "0.23", features = ["ring"]}
tls-listener = "0.11"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
rand = "0.8"
futures = "0.3"
anyhow = "1.0"
clap = { version = "4.5", features = ["derive"] }
axum = { version = "0.8", features = ["macros"] }
axum-extra = { version = "0.10", features = ["json-lines", "typed-header"] }
tower-http = { version = "0.5", features = ["cors"] }
headers = "0.4"
tokio-stream = { version = "0.1" }
tokio-util = { version = "0.7", features = ["codec"] }
http = "1.3"
base64 = "0.22"
prost = "0.13"
prost-types = "0.13"
tonic = { version = "0.12", default-features = false, features = [
"prost",
"codegen",
"transport"
] }
split-iter = "0.1"
thiserror = "2.0"
prometheus-client = { version = "0.23" }
serde_yaml = "0.9.34"
ppp = "2.3.0"
bytes = "1.10.1"
jsonwebtoken = "9.3"
openapiv3 = "2.0.0"
reqwest = { version = "0.12.14" , default-features = false, features = ["http2", "charset", "macos-system-configuration", "rustls-tls"]}
itertools = "0.14"
async-trait = "0.1"
lazy_static = "1.4"
pbjson = "0.7"
pbjson-types = "0.7"
opentelemetry = { version = "0.29" }
opentelemetry_sdk = { version = "0.29" }
opentelemetry-http = { version = "0.29" }
opentelemetry-otlp = { version = "0.29", features = ["grpc-tonic"] }
secrecy = "0.10.3"
google-cloud-auth = {version = "0.18.0", optional = true}
aws-config = {version = "1.6.1", optional = true}
aws-sdk-lambda = {version = "1.67.0", optional = true}
aws-smithy-runtime-api = {version = "1.7.4", optional = true}
pin-project-lite = "0.2.16"
futures-util = "0.3.31"
a2a-sdk = { version = "0.4.0", path = "a2a-sdk" }
eventsource-stream = "0.2.3"
http-body-util = "0.1.3"
mime = "0.3.17"
homedir = "0.3.4"
include_dir = { version = "0.7.4", optional = true }
tower-serve-static = { version = "0.1.1", optional = true }
regex = "1.11.1"
once_cell = "1.21.3"
[build-dependencies]
tonic-build = { version = "0.12", features = [
"prost",
] }
prost-build = "0.13"
anyhow = "1.0"
rustc_version = "0.4"
pbjson-build = "0.7"
[lib]
path = "src/lib.rs"
bench = false
[[bin]]
name = "agentgateway"
path = "src/main.rs"
bench = false
[dev-dependencies]
serde_json = "1.0"
tokio = "1.42"
wiremock = "0.6.3"