10 unstable releases (3 breaking)
0.3.0 | Jan 28, 2021 |
---|---|
0.2.0 | Oct 23, 2020 |
0.1.6 | Mar 13, 2020 |
0.0.1 | Feb 18, 2020 |
#26 in #warp
41 downloads per month
20KB
471 lines
Bring JSON RPC features into warp world.
Filters
- json_rpc
- requires the request to follow basic JSON RPC specification.
- YOU HAVE TO CALL THIS FILTER BEFORE ANY OF BELOW FILTERS.
- method
- requires the request RPC method to be given name.
- params
- extracts RPC parameter.
Example
use warp_json_rpc::filters as json_rpc;
use futures::future;
use warp::Filter as _;
#[tokio::main]
async fn main() {
// create Filter
let route = warp::filters::path::path("rpc")
// ## Point 1
// This filter is required.
.and(json_rpc::json_rpc())
.and(json_rpc::method("add"))
.and(json_rpc::params::<(usize, usize)>())
// `res.success` returns `impl Reply` which represents JSON RPC Response
.map(|res: Builder, (lhs, rhs)| res.success(lhs + rhs).unwrap());
// ## Point 2
// You **MUST** wraps root `Filter` by `warp_json_rpc::service` function.
let svc = warp_json_rpc::service(route);
let make_svc = hyper::service::make_service_fn(move |_| future::ok::<_, Infallible>(svc));
hyper::Server::bind(&([127, 0, 0, 1], 3030).into())
.serve(make_svc)
.await
.unwrap();
}
Dependencies
~9–18MB
~249K SLoC