jsonrpc-core 5.0.0

Transport agnostic rust implementation of JSON-RPC 2.0 Specification.
Documentation
extern crate jsonrpc_core;
extern crate futures;

use futures::Future;
use jsonrpc_core::*;

fn main() {
	let mut io = IoHandler::new();

	io.add_async_method("say_hello", |_: Params| {
		futures::finished(Value::String("Hello World!".to_owned())).boxed()
	});

	let request = r#"{"jsonrpc": "2.0", "method": "say_hello", "params": [42, 23], "id": 1}"#;
	let response = r#"{"jsonrpc":"2.0","result":"hello","id":1}"#;

	assert_eq!(io.handle_request(request).wait().unwrap(), Some(response.to_owned()));
}