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

#22 in #rpc-server

Download history 20/week @ 2024-01-01 31/week @ 2024-01-08 10/week @ 2024-01-15 13/week @ 2024-01-22 5/week @ 2024-01-29 15/week @ 2024-02-05 18/week @ 2024-02-12 33/week @ 2024-02-19 51/week @ 2024-02-26 40/week @ 2024-03-04 46/week @ 2024-03-11 38/week @ 2024-03-18 21/week @ 2024-03-25 58/week @ 2024-04-01 34/week @ 2024-04-08 14/week @ 2024-04-15

132 downloads per month

MIT/Apache

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–20MB
~253K SLoC