-
Notifications
You must be signed in to change notification settings - Fork 274
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add jsonrpc-derive details. * Update docs and authors. * Bump version.
- Loading branch information
Showing
12 changed files
with
63 additions
and
59 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
[package] | ||
authors = ["Parity Technologies <[email protected]>"] | ||
description = "Transport agnostic rust implementation of JSON-RPC 2.0 Specification." | ||
documentation = "https://docs.rs/jsonrpc-core/" | ||
edition = "2018" | ||
homepage = "https://github.com/paritytech/jsonrpc" | ||
repository = "https://github.com/paritytech/jsonrpc" | ||
keywords = ["jsonrpc", "json-rpc", "json", "rpc", "serde"] | ||
license = "MIT" | ||
name = "jsonrpc-core" | ||
version = "10.0.0" | ||
authors = ["debris <[email protected]>"] | ||
keywords = ["jsonrpc", "json-rpc", "json", "rpc", "serde"] | ||
documentation = "https://paritytech.github.io/jsonrpc/jsonrpc_core/index.html" | ||
edition = "2018" | ||
repository = "https://github.com/paritytech/jsonrpc" | ||
version = "10.0.1" | ||
|
||
categories = [ | ||
"asynchronous", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,12 @@ | ||
[package] | ||
name = "jsonrpc-derive" | ||
version = "10.0.0" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
documentation = "https://docs.rs/jsonrpc-derive/" | ||
edition = "2018" | ||
homepage = "https://github.com/paritytech/jsonrpc" | ||
license = "MIT" | ||
name = "jsonrpc-derive" | ||
repository = "https://github.com/paritytech/jsonrpc" | ||
version = "10.0.1" | ||
|
||
[lib] | ||
proc-macro = true | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
[package] | ||
authors = ["Parity Technologies <[email protected]>"] | ||
description = "Rust http server using JSONRPC 2.0." | ||
documentation = "https://docs.rs/jsonrpc-http-server/" | ||
edition = "2018" | ||
homepage = "https://github.com/paritytech/jsonrpc" | ||
repository = "https://github.com/paritytech/jsonrpc" | ||
keywords = ["jsonrpc", "json-rpc", "json", "rpc", "server"] | ||
license = "MIT" | ||
name = "jsonrpc-http-server" | ||
version = "10.0.0" | ||
authors = ["debris <[email protected]>"] | ||
keywords = ["jsonrpc", "json-rpc", "json", "rpc", "server"] | ||
documentation = "https://paritytech.github.io/jsonrpc/jsonrpc_http_server/index.html" | ||
edition = "2018" | ||
repository = "https://github.com/paritytech/jsonrpc" | ||
version = "10.0.1" | ||
|
||
[dependencies] | ||
hyper = "0.12" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
[package] | ||
name = "jsonrpc-ipc-server" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
description = "IPC server for JSON-RPC" | ||
version = "10.0.0" | ||
authors = ["Nikolay Volf <[email protected]>"] | ||
license = "MIT" | ||
documentation = "https://docs.rs/jsonrpc-ipc-server/" | ||
edition = "2018" | ||
homepage = "https://github.com/paritytech/jsonrpc" | ||
license = "MIT" | ||
name = "jsonrpc-ipc-server" | ||
repository = "https://github.com/paritytech/jsonrpc" | ||
documentation = "https://paritytech.github.io/jsonrpc/json_ipc_server/index.html" | ||
edition = "2018" | ||
version = "10.0.1" | ||
|
||
[dependencies] | ||
log = "0.4" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
[package] | ||
authors = ["Parity Technologies <[email protected]>"] | ||
description = "Helper macros for jsonrpc-core" | ||
documentation = "https://docs.rs/jsonrpc-macros/" | ||
homepage = "https://github.com/paritytech/jsonrpc" | ||
repository = "https://github.com/paritytech/jsonrpc" | ||
keywords = ["jsonrpc", "json-rpc", "json", "rpc", "macros"] | ||
license = "MIT" | ||
name = "jsonrpc-macros" | ||
version = "10.0.0" | ||
authors = ["rphmeier <[email protected]>"] | ||
keywords = ["jsonrpc", "json-rpc", "json", "rpc", "macros"] | ||
documentation = "https://paritytech.github.io/jsonrpc/jsonrpc_macros/index.html" | ||
repository = "https://github.com/paritytech/jsonrpc" | ||
version = "10.0.1" | ||
|
||
[dependencies] | ||
serde = "1.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
[package] | ||
authors = ["Parity Technologies <[email protected]>"] | ||
description = "Publish-Subscribe extension for jsonrpc." | ||
documentation = "https://docs.rs/jsonrpc-pubsub/" | ||
edition = "2018" | ||
homepage = "https://github.com/paritytech/jsonrpc" | ||
repository = "https://github.com/paritytech/jsonrpc" | ||
keywords = ["jsonrpc", "json-rpc", "json", "rpc", "macros"] | ||
license = "MIT" | ||
name = "jsonrpc-pubsub" | ||
version = "10.0.0" | ||
authors = ["tomusdrw <[email protected]>"] | ||
keywords = ["jsonrpc", "json-rpc", "json", "rpc", "macros"] | ||
documentation = "https://paritytech.github.io/jsonrpc/jsonrpc_pubsub/index.html" | ||
edition = "2018" | ||
repository = "https://github.com/paritytech/jsonrpc" | ||
version = "10.0.1" | ||
|
||
[dependencies] | ||
log = "0.4" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ name = "jsonrpc-pubsub-examples" | |
description = "Examples of Publish-Subscribe extension for jsonrpc." | ||
homepage = "https://github.com/paritytech/jsonrpc" | ||
repository = "https://github.com/paritytech/jsonrpc" | ||
version = "10.0.0" | ||
version = "10.0.1" | ||
authors = ["tomusdrw <[email protected]>"] | ||
license = "MIT" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
[package] | ||
authors = ["Parity Technologies <[email protected]>"] | ||
description = "Server utils for jsonrpc-core crate." | ||
name = "jsonrpc-server-utils" | ||
version = "10.0.0" | ||
authors = ["tomusdrw <[email protected]>"] | ||
license = "MIT" | ||
keywords = ["jsonrpc", "json-rpc", "json", "rpc", "serde"] | ||
documentation = "https://paritytech.github.io/jsonrpc/jsonrpc_core/index.html" | ||
documentation = "https://docs.rs/jsonrpc-server-utils/" | ||
edition = "2018" | ||
homepage = "https://github.com/paritytech/jsonrpc" | ||
keywords = ["jsonrpc", "json-rpc", "json", "rpc", "serde"] | ||
license = "MIT" | ||
name = "jsonrpc-server-utils" | ||
repository = "https://github.com/paritytech/jsonrpc" | ||
edition = "2018" | ||
version = "10.0.1" | ||
|
||
[dependencies] | ||
bytes = "0.4" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
[package] | ||
name = "jsonrpc-stdio-server" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
description = "STDIN/STDOUT server for JSON-RPC" | ||
version = "10.0.0" | ||
authors = ["cmichi <[email protected]>"] | ||
license = "MIT" | ||
documentation = "https://docs.rs/jsonrpc-stdio-server/" | ||
edition = "2018" | ||
homepage = "https://github.com/paritytech/jsonrpc" | ||
license = "MIT" | ||
name = "jsonrpc-stdio-server" | ||
repository = "https://github.com/paritytech/jsonrpc" | ||
documentation = "https://paritytech.github.io/jsonrpc/jsonrpc_stdio_server/index.html" | ||
edition = "2018" | ||
version = "10.0.1" | ||
|
||
[dependencies] | ||
futures = "0.1.23" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
[package] | ||
name = "jsonrpc-tcp-server" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
description = "TCP/IP server for JSON-RPC" | ||
version = "10.0.0" | ||
authors = ["NikVolf <[email protected]>"] | ||
license = "MIT" | ||
documentation = "https://docs.rs/jsonrpc-tcp-server/" | ||
edition = "2018" | ||
homepage = "https://github.com/paritytech/jsonrpc" | ||
license = "MIT" | ||
name = "jsonrpc-tcp-server" | ||
repository = "https://github.com/paritytech/jsonrpc" | ||
documentation = "https://paritytech.github.io/jsonrpc/jsonrpc_tcp_server/index.html" | ||
edition = "2018" | ||
version = "10.0.1" | ||
|
||
[dependencies] | ||
log = "0.4" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
[package] | ||
name = "jsonrpc-test" | ||
description = "Simple test framework for JSON-RPC." | ||
version = "10.0.0" | ||
version = "10.0.1" | ||
authors = ["Tomasz Drwięga <[email protected]>"] | ||
license = "MIT" | ||
homepage = "https://github.com/paritytech/jsonrpc" | ||
repository = "https://github.com/paritytech/jsonrpc" | ||
documentation = "https://paritytech.github.io/jsonrpc/jsonrpc_test/index.html" | ||
documentation = "https://docs.rs/jsonrpc-test/" | ||
edition = "2018" | ||
|
||
[dependencies] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
[package] | ||
name = "jsonrpc-ws-server" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
description = "WebSockets server for JSON-RPC" | ||
version = "10.0.0" | ||
authors = ["tomusdrw <[email protected]>"] | ||
license = "MIT" | ||
documentation = "https://docs.rs/jsonrpc-ws-server/" | ||
edition = "2018" | ||
homepage = "https://github.com/paritytech/jsonrpc" | ||
license = "MIT" | ||
name = "jsonrpc-ws-server" | ||
repository = "https://github.com/paritytech/jsonrpc" | ||
documentation = "https://paritytech.github.io/jsonrpc/json_ws_server/index.html" | ||
edition = "2018" | ||
version = "10.0.1" | ||
|
||
[dependencies] | ||
error-chain = "0.12" | ||
|