jsonrpc-ws-server

Crates.iojsonrpc-ws-server
lib.rsjsonrpc-ws-server
version18.0.0
sourcesrc
created_at2019-01-31 12:19:01.13157
updated_at2021-07-20 15:56:44.955168
descriptionWebSockets server for JSON-RPC
homepagehttps://github.com/paritytech/jsonrpc
repositoryhttps://github.com/paritytech/jsonrpc
max_upload_size
id111785
size59,550
Core devs (github:paritytech:core-devs)

documentation

https://docs.rs/jsonrpc-ws-server/

README

jsonrpc-ws-server

WebSockets server for JSON-RPC 2.0.

Documentation

Example

Cargo.toml

[dependencies]
jsonrpc-ws-server = "15.0"

main.rs

use jsonrpc_ws_server::*;
use jsonrpc_ws_server::jsonrpc_core::*;

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

	let server = ServerBuilder::new(io)
		.start(&"0.0.0.0:3030".parse().unwrap())
		.expect("Server must start with no issues");

	server.wait().unwrap()
}
Commit count: 771

cargo fmt