#json-rpc #rpc #serde #json

tetsy-jsonrpc-core

Tetsy Transport agnostic rust implementation of JSON-RPC 2.0 Specification

Show the crate…

3 stable releases

15.1.0 Mar 13, 2021
14.2.1 Mar 1, 2021

#266 in #json-rpc

Download history 25/week @ 2024-11-13 38/week @ 2024-11-20 66/week @ 2024-11-27 97/week @ 2024-12-04 77/week @ 2024-12-11 39/week @ 2024-12-18 13/week @ 2024-12-25 33/week @ 2025-01-01 26/week @ 2025-01-08 39/week @ 2025-01-15 54/week @ 2025-01-22 23/week @ 2025-01-29 44/week @ 2025-02-05 80/week @ 2025-02-12 25/week @ 2025-02-19 29/week @ 2025-02-26

181 downloads per month
Used in 51 crates (27 directly)

MIT license

61KB
1.5K SLoC

tetsy-jsonrpc-core

Transport agnostic rust implementation of JSON-RPC 2.0 Specification.

Documentation

  • - server side
  • - client side

Example

Cargo.toml

[dependencies]
tetsy-jsonrpc-core = "4.0"

main.rs

use tetsy_jsonrpc_core::*;

fn main() {
	let mut io = IoHandler::default();
	io.add_method("say_hello", |_params: Params| {
		Ok(Value::String("hello".into()))
	});

	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_sync(request), Some(response.to_owned()));
}

Asynchronous responses

main.rs

use tetsy_jsonrpc_core::*;
use tetsy_jsonrpc_core::futures::Future;

fn main() {
	let io = IoHandler::new();
	io.add_async_method("say_hello", |_params: Params| {
		futures::finished(Value::String("hello".into()))
	});

	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()));
}

Publish-Subscribe

See examples directory.

Dependencies

~0.7–1.6MB
~35K SLoC