2 个稳定版本
10.1.0 | 2019 年 3 月 24 日 |
---|---|
10.0.1 | 2019 年 3 月 25 日 |
258 在 WebSocket
114 每月下载量
130KB
3.5K SLoC
susy-jsonrpc-ws-server
JSON-RPC 2.0 的 WebSocket 服务器。
示例
Cargo.toml
[dependencies]
susy-jsonrpc-ws-server = "10.0"
main.rs
use susy_jsonrpc_ws_server::*;
use susy_jsonrpc_ws_server::susy_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()
}
lib.rs
:
WebSockets
服务器。
依赖关系
~14MB
~263K SLoC