We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 89cc44c commit 8f08277Copy full SHA for 8f08277
2 files changed
a2acli/src/config.rs
@@ -138,6 +138,8 @@ fn parse_binding_str(s: &str) -> Option<Binding> {
138
match s {
139
"jsonrpc" => Some(Binding::Jsonrpc),
140
"http-json" => Some(Binding::HttpJson),
141
+ #[cfg(feature = "slimrpc")]
142
+ "slimrpc" => Some(Binding::Slimrpc),
143
_ => None,
144
}
145
a2acli/src/lib.rs
@@ -305,6 +305,8 @@ impl Binding {
305
match self {
306
Binding::Jsonrpc => TRANSPORT_PROTOCOL_JSONRPC,
307
Binding::HttpJson => TRANSPORT_PROTOCOL_HTTP_JSON,
308
309
+ Binding::Slimrpc => a2a::TRANSPORT_PROTOCOL_SLIMRPC,
310
311
312
0 commit comments