@@ -16,24 +16,31 @@ Transport-agnostic `core` and transport servers for `http`, `ipc`, `websockets`
1616## Sub-projects
1717- [ jsonrpc-core] ( ./core ) [ ![ crates.io] [ core-image ]] [ core-url ]
1818- [ jsonrpc-http-server] ( ./http ) [ ![ crates.io] [ http-server-image ]] [ http-server-url ]
19- - [ jsonrpc-minihttp-server] ( ./minihttp )
20- - [ jsonrpc-ipc-server] ( ./ipc )
19+ - [ jsonrpc-ipc-server] ( ./ipc ) [ ![ crates.io] [ ipc-server-image ]] [ ipc-server-url ]
2120- [ jsonrpc-tcp-server] ( ./tcp ) [ ![ crates.io] [ tcp-server-image ]] [ tcp-server-url ]
22- - [ jsonrpc-ws-server] ( ./ws )
23- - [ jsonrpc-stdio-server] ( ./stdio )
21+ - [ jsonrpc-ws-server] ( ./ws ) [ ![ crates.io ] [ ws-server-image ]] [ ws-server-url ]
22+ - [ jsonrpc-stdio-server] ( ./stdio ) [ ![ crates.io ] [ stdio-server-image ]] [ stdio-server-url ]
2423- [ jsonrpc-macros] ( ./macros ) [ ![ crates.io] [ macros-image ]] [ macros-url ] * deprecated:* use ` derive ` instead
25- - [ jsonrpc-derive] ( ./derive )
24+ - [ jsonrpc-derive] ( ./derive ) [ ![ crates.io ] [ derive-image ]] [ derive-url ]
2625- [ jsonrpc-server-utils] ( ./server-utils ) [ ![ crates.io] [ server-utils-image ]] [ server-utils-url ]
2726- [ jsonrpc-pubsub] ( ./pubsub ) [ ![ crates.io] [ pubsub-image ]] [ pubsub-url ]
2827
2928[ core-image ] : https://img.shields.io/crates/v/jsonrpc-core.svg
3029[ core-url ] : https://crates.io/crates/jsonrpc-core
3130[ http-server-image ] : https://img.shields.io/crates/v/jsonrpc-http-server.svg
3231[ http-server-url ] : https://crates.io/crates/jsonrpc-http-server
32+ [ ipc-server-image ] : https://img.shields.io/crates/v/jsonrpc-ipc-server.svg
33+ [ ipc-server-url ] : https://crates.io/crates/jsonrpc-ipc-server
3334[ tcp-server-image ] : https://img.shields.io/crates/v/jsonrpc-tcp-server.svg
3435[ tcp-server-url ] : https://crates.io/crates/jsonrpc-tcp-server
36+ [ ws-server-image ] : https://img.shields.io/crates/v/jsonrpc-ws-server.svg
37+ [ ws-server-url ] : https://crates.io/crates/jsonrpc-ws-server
38+ [ stdio-server-image ] : https://img.shields.io/crates/v/jsonrpc-stdio-server.svg
39+ [ stdio-server-url ] : https://crates.io/crates/jsonrpc-stdio-server
3540[ macros-image ] : https://img.shields.io/crates/v/jsonrpc-macros.svg
3641[ macros-url ] : https://crates.io/crates/jsonrpc-macros
42+ [ derive-image ] : https://img.shields.io/crates/v/jsonrpc-derive.svg
43+ [ derive-url ] : https://crates.io/crates/jsonrpc-derive
3744[ server-utils-image ] : https://img.shields.io/crates/v/jsonrpc-server-utils.svg
3845[ server-utils-url ] : https://crates.io/crates/jsonrpc-server-utils
3946[ pubsub-image ] : https://img.shields.io/crates/v/jsonrpc-pubsub.svg
@@ -49,11 +56,8 @@ Transport-agnostic `core` and transport servers for `http`, `ipc`, `websockets`
4956### Basic Usage (with HTTP transport)
5057
5158``` rust
52- extern crate jsonrpc_core;
53- extern crate jsonrpc_minihttp_server;
54-
5559use jsonrpc_core :: {IoHandler , Value , Params };
56- use jsonrpc_minihttp_server :: {ServerBuilder };
60+ use jsonrpc_http_server :: {ServerBuilder };
5761
5862fn main () {
5963 let mut io = IoHandler :: new ();
0 commit comments