Skip to content

Commit 8ffc7f3

Browse files
authored
Add jsonrpc-derive details. (#372)
* Add jsonrpc-derive details. * Update docs and authors. * Bump version.
1 parent 2fe3bfc commit 8ffc7f3

File tree

12 files changed

+63
-59
lines changed

12 files changed

+63
-59
lines changed

core/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
[package]
2+
authors = ["Parity Technologies <admin@parity.io>"]
23
description = "Transport agnostic rust implementation of JSON-RPC 2.0 Specification."
4+
documentation = "https://docs.rs/jsonrpc-core/"
5+
edition = "2018"
36
homepage = "https://github.com/paritytech/jsonrpc"
4-
repository = "https://github.com/paritytech/jsonrpc"
7+
keywords = ["jsonrpc", "json-rpc", "json", "rpc", "serde"]
58
license = "MIT"
69
name = "jsonrpc-core"
7-
version = "10.0.0"
8-
authors = ["debris <marek.kotewicz@gmail.com>"]
9-
keywords = ["jsonrpc", "json-rpc", "json", "rpc", "serde"]
10-
documentation = "https://paritytech.github.io/jsonrpc/jsonrpc_core/index.html"
11-
edition = "2018"
10+
repository = "https://github.com/paritytech/jsonrpc"
11+
version = "10.0.1"
1212

1313
categories = [
1414
"asynchronous",

derive/Cargo.toml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
11
[package]
2-
name = "jsonrpc-derive"
3-
version = "10.0.0"
42
authors = ["Parity Technologies <admin@parity.io>"]
3+
documentation = "https://docs.rs/jsonrpc-derive/"
54
edition = "2018"
5+
homepage = "https://github.com/paritytech/jsonrpc"
6+
license = "MIT"
7+
name = "jsonrpc-derive"
8+
repository = "https://github.com/paritytech/jsonrpc"
9+
version = "10.0.1"
610

711
[lib]
812
proc-macro = true

http/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
[package]
2+
authors = ["Parity Technologies <admin@parity.io>"]
23
description = "Rust http server using JSONRPC 2.0."
4+
documentation = "https://docs.rs/jsonrpc-http-server/"
5+
edition = "2018"
36
homepage = "https://github.com/paritytech/jsonrpc"
4-
repository = "https://github.com/paritytech/jsonrpc"
7+
keywords = ["jsonrpc", "json-rpc", "json", "rpc", "server"]
58
license = "MIT"
69
name = "jsonrpc-http-server"
7-
version = "10.0.0"
8-
authors = ["debris <marek.kotewicz@gmail.com>"]
9-
keywords = ["jsonrpc", "json-rpc", "json", "rpc", "server"]
10-
documentation = "https://paritytech.github.io/jsonrpc/jsonrpc_http_server/index.html"
11-
edition = "2018"
10+
repository = "https://github.com/paritytech/jsonrpc"
11+
version = "10.0.1"
1212

1313
[dependencies]
1414
hyper = "0.12"

ipc/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
[package]
2-
name = "jsonrpc-ipc-server"
2+
authors = ["Parity Technologies <admin@parity.io>"]
33
description = "IPC server for JSON-RPC"
4-
version = "10.0.0"
5-
authors = ["Nikolay Volf <nikvolf@gmail.com>"]
6-
license = "MIT"
4+
documentation = "https://docs.rs/jsonrpc-ipc-server/"
5+
edition = "2018"
76
homepage = "https://github.com/paritytech/jsonrpc"
7+
license = "MIT"
8+
name = "jsonrpc-ipc-server"
89
repository = "https://github.com/paritytech/jsonrpc"
9-
documentation = "https://paritytech.github.io/jsonrpc/json_ipc_server/index.html"
10-
edition = "2018"
10+
version = "10.0.1"
1111

1212
[dependencies]
1313
log = "0.4"

macros/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
[package]
2+
authors = ["Parity Technologies <admin@parity.io>"]
23
description = "Helper macros for jsonrpc-core"
4+
documentation = "https://docs.rs/jsonrpc-macros/"
35
homepage = "https://github.com/paritytech/jsonrpc"
4-
repository = "https://github.com/paritytech/jsonrpc"
6+
keywords = ["jsonrpc", "json-rpc", "json", "rpc", "macros"]
57
license = "MIT"
68
name = "jsonrpc-macros"
7-
version = "10.0.0"
8-
authors = ["rphmeier <robert@parity.io>"]
9-
keywords = ["jsonrpc", "json-rpc", "json", "rpc", "macros"]
10-
documentation = "https://paritytech.github.io/jsonrpc/jsonrpc_macros/index.html"
9+
repository = "https://github.com/paritytech/jsonrpc"
10+
version = "10.0.1"
1111

1212
[dependencies]
1313
serde = "1.0"

pubsub/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
[package]
2+
authors = ["Parity Technologies <admin@parity.io>"]
23
description = "Publish-Subscribe extension for jsonrpc."
4+
documentation = "https://docs.rs/jsonrpc-pubsub/"
5+
edition = "2018"
36
homepage = "https://github.com/paritytech/jsonrpc"
4-
repository = "https://github.com/paritytech/jsonrpc"
7+
keywords = ["jsonrpc", "json-rpc", "json", "rpc", "macros"]
58
license = "MIT"
69
name = "jsonrpc-pubsub"
7-
version = "10.0.0"
8-
authors = ["tomusdrw <tomasz@parity.io>"]
9-
keywords = ["jsonrpc", "json-rpc", "json", "rpc", "macros"]
10-
documentation = "https://paritytech.github.io/jsonrpc/jsonrpc_pubsub/index.html"
11-
edition = "2018"
10+
repository = "https://github.com/paritytech/jsonrpc"
11+
version = "10.0.1"
1212

1313
[dependencies]
1414
log = "0.4"

pubsub/more-examples/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "jsonrpc-pubsub-examples"
33
description = "Examples of Publish-Subscribe extension for jsonrpc."
44
homepage = "https://github.com/paritytech/jsonrpc"
55
repository = "https://github.com/paritytech/jsonrpc"
6-
version = "10.0.0"
6+
version = "10.0.1"
77
authors = ["tomusdrw <tomasz@parity.io>"]
88
license = "MIT"
99

server-utils/Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
[package]
2+
authors = ["Parity Technologies <admin@parity.io>"]
23
description = "Server utils for jsonrpc-core crate."
3-
name = "jsonrpc-server-utils"
4-
version = "10.0.0"
5-
authors = ["tomusdrw <tomasz@parity.io>"]
6-
license = "MIT"
7-
keywords = ["jsonrpc", "json-rpc", "json", "rpc", "serde"]
8-
documentation = "https://paritytech.github.io/jsonrpc/jsonrpc_core/index.html"
4+
documentation = "https://docs.rs/jsonrpc-server-utils/"
5+
edition = "2018"
96
homepage = "https://github.com/paritytech/jsonrpc"
7+
keywords = ["jsonrpc", "json-rpc", "json", "rpc", "serde"]
8+
license = "MIT"
9+
name = "jsonrpc-server-utils"
1010
repository = "https://github.com/paritytech/jsonrpc"
11-
edition = "2018"
11+
version = "10.0.1"
1212

1313
[dependencies]
1414
bytes = "0.4"

stdio/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
[package]
2-
name = "jsonrpc-stdio-server"
2+
authors = ["Parity Technologies <admin@parity.io>"]
33
description = "STDIN/STDOUT server for JSON-RPC"
4-
version = "10.0.0"
5-
authors = ["cmichi <mich@elmueller.net>"]
6-
license = "MIT"
4+
documentation = "https://docs.rs/jsonrpc-stdio-server/"
5+
edition = "2018"
76
homepage = "https://github.com/paritytech/jsonrpc"
7+
license = "MIT"
8+
name = "jsonrpc-stdio-server"
89
repository = "https://github.com/paritytech/jsonrpc"
9-
documentation = "https://paritytech.github.io/jsonrpc/jsonrpc_stdio_server/index.html"
10-
edition = "2018"
10+
version = "10.0.1"
1111

1212
[dependencies]
1313
futures = "0.1.23"

tcp/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
[package]
2-
name = "jsonrpc-tcp-server"
2+
authors = ["Parity Technologies <admin@parity.io>"]
33
description = "TCP/IP server for JSON-RPC"
4-
version = "10.0.0"
5-
authors = ["NikVolf <nikvolf@gmail.com>"]
6-
license = "MIT"
4+
documentation = "https://docs.rs/jsonrpc-tcp-server/"
5+
edition = "2018"
76
homepage = "https://github.com/paritytech/jsonrpc"
7+
license = "MIT"
8+
name = "jsonrpc-tcp-server"
89
repository = "https://github.com/paritytech/jsonrpc"
9-
documentation = "https://paritytech.github.io/jsonrpc/jsonrpc_tcp_server/index.html"
10-
edition = "2018"
10+
version = "10.0.1"
1111

1212
[dependencies]
1313
log = "0.4"

0 commit comments

Comments
 (0)