#json-rpc #codec #http-response #http-request #jsonrpc-codec

jsonrpc-parse

parse JSON-RPC (2.0) from TCP Bytes or deparse JSON-RPC to Codec and Bytes

3 releases

0.1.2 May 22, 2019
0.1.1 May 21, 2019
0.1.0 Mar 21, 2019

#91 in #http-response

34 downloads per month
Used in teatree

MIT license

19KB
473 lines

jsonrpc-parse

parse JSON-RPC (2.0) from TCP Bytes or deparse JSON-RPC to Codec and Bytes

[dependencies]
jsonrpc_parse = "0.1"
use jsonrpc_parse::httpcodec::{HTTPCodec, HTTP};

// use HTTPCodec to parse frame bytes, the result is HTTPCodec's HTTP

match http {
    HTTP::Request(req) => {}
    HTTP::Response(resp) => {}
    _ => {} // other is Response about the Error, can return direct.
}

Dependencies

~1.7–2.6MB
~54K SLoC