Skip to content

Commit

Permalink
Add jsonrpc-derive details. (#372)
Browse files Browse the repository at this point in the history
* Add jsonrpc-derive details.

* Update docs and authors.

* Bump version.
  • Loading branch information
tomusdrw committed Jan 31, 2019
1 parent 2fe3bfc commit 8ffc7f3
Show file tree
Hide file tree
Showing 12 changed files with 63 additions and 59 deletions.
12 changes: 6 additions & 6 deletions core/Cargo.toml
@@ -1,14 +1,14 @@
[package]
authors = ["Parity Technologies <admin@parity.io>"]
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 <marek.kotewicz@gmail.com>"]
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",
Expand Down
8 changes: 6 additions & 2 deletions derive/Cargo.toml
@@ -1,8 +1,12 @@
[package]
name = "jsonrpc-derive"
version = "10.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
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
Expand Down
12 changes: 6 additions & 6 deletions http/Cargo.toml
@@ -1,14 +1,14 @@
[package]
authors = ["Parity Technologies <admin@parity.io>"]
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 <marek.kotewicz@gmail.com>"]
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"
Expand Down
12 changes: 6 additions & 6 deletions ipc/Cargo.toml
@@ -1,13 +1,13 @@
[package]
name = "jsonrpc-ipc-server"
authors = ["Parity Technologies <admin@parity.io>"]
description = "IPC server for JSON-RPC"
version = "10.0.0"
authors = ["Nikolay Volf <nikvolf@gmail.com>"]
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"
Expand Down
10 changes: 5 additions & 5 deletions macros/Cargo.toml
@@ -1,13 +1,13 @@
[package]
authors = ["Parity Technologies <admin@parity.io>"]
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 <robert@parity.io>"]
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"
Expand Down
12 changes: 6 additions & 6 deletions pubsub/Cargo.toml
@@ -1,14 +1,14 @@
[package]
authors = ["Parity Technologies <admin@parity.io>"]
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 <tomasz@parity.io>"]
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"
Expand Down
2 changes: 1 addition & 1 deletion pubsub/more-examples/Cargo.toml
Expand Up @@ -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 <tomasz@parity.io>"]
license = "MIT"

Expand Down
14 changes: 7 additions & 7 deletions server-utils/Cargo.toml
@@ -1,14 +1,14 @@
[package]
authors = ["Parity Technologies <admin@parity.io>"]
description = "Server utils for jsonrpc-core crate."
name = "jsonrpc-server-utils"
version = "10.0.0"
authors = ["tomusdrw <tomasz@parity.io>"]
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"
Expand Down
12 changes: 6 additions & 6 deletions stdio/Cargo.toml
@@ -1,13 +1,13 @@
[package]
name = "jsonrpc-stdio-server"
authors = ["Parity Technologies <admin@parity.io>"]
description = "STDIN/STDOUT server for JSON-RPC"
version = "10.0.0"
authors = ["cmichi <mich@elmueller.net>"]
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"
Expand Down
12 changes: 6 additions & 6 deletions tcp/Cargo.toml
@@ -1,13 +1,13 @@
[package]
name = "jsonrpc-tcp-server"
authors = ["Parity Technologies <admin@parity.io>"]
description = "TCP/IP server for JSON-RPC"
version = "10.0.0"
authors = ["NikVolf <nikvolf@gmail.com>"]
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"
Expand Down
4 changes: 2 additions & 2 deletions test/Cargo.toml
@@ -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 <tomasz@parity.io>"]
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]
Expand Down
12 changes: 6 additions & 6 deletions ws/Cargo.toml
@@ -1,13 +1,13 @@
[package]
name = "jsonrpc-ws-server"
authors = ["Parity Technologies <admin@parity.io>"]
description = "WebSockets server for JSON-RPC"
version = "10.0.0"
authors = ["tomusdrw <tomasz@parity.io>"]
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"
Expand Down

0 comments on commit 8ffc7f3

Please sign in to comment.