#json-rpc #rpc #serde #json

tetsy-jsonrpc-core

Tetsy Transport agnostic rust implementation of JSON-RPC 2.0 Specification

显示软件包…

3个稳定版本

15.1.0 2021年3月13日
14.2.1 2021年3月1日

#33 in #jsonrpc

Download history 163/week @ 2024-04-01 82/week @ 2024-04-08 76/week @ 2024-04-15 82/week @ 2024-04-22 81/week @ 2024-04-29 87/week @ 2024-05-06 96/week @ 2024-05-13 60/week @ 2024-05-20 86/week @ 2024-05-27 67/week @ 2024-06-03 72/week @ 2024-06-10 70/week @ 2024-06-17 96/week @ 2024-06-24 40/week @ 2024-07-08 112/week @ 2024-07-15

250 个月下载量
51 软件包中使用(直接使用27个)

MIT 许可证

61KB
1.5K SLoC

tetsy-jsonrpc-core

JSON-RPC 2.0规范的无传输rust实现。

文档

  • - 服务器端
  • - 客户端

示例

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

异步响应

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

发布-订阅

参见示例目录。

依赖项

~0.7–1.5MB
~34K SLoC