Skip to content

Commit

Permalink
edition = "2021"
Browse files Browse the repository at this point in the history
rust-version = "1.56.1"
style for [package] field
  • Loading branch information
nuke-web3 committed Nov 21, 2021
1 parent ecc6558 commit 1e8d60c
Show file tree
Hide file tree
Showing 12 changed files with 48 additions and 36 deletions.
7 changes: 4 additions & 3 deletions core-client/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
[package]
name = "jsonrpc-core-client"
version = "18.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
description = "Transport agnostic JSON-RPC 2.0 client implementation."
documentation = "https://docs.rs/jsonrpc-core-client/"
edition = "2018"
homepage = "https://github.com/paritytech/jsonrpc"
keywords = ["jsonrpc", "json-rpc", "json", "rpc", "serde"]
license = "MIT"
name = "jsonrpc-core-client"
repository = "https://github.com/paritytech/jsonrpc"
version = "18.0.0"
edition = "2021"
rust-version = "1.56.1"

categories = [
"asynchronous",
Expand Down
7 changes: 4 additions & 3 deletions core-client/transports/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
[package]
name = "jsonrpc-client-transports"
version = "18.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
description = "Transport agnostic JSON-RPC 2.0 client implementation."
documentation = "https://docs.rs/jsonrpc-client-transports/"
edition = "2018"
homepage = "https://github.com/paritytech/jsonrpc"
keywords = ["jsonrpc", "json-rpc", "json", "rpc", "serde"]
license = "MIT"
name = "jsonrpc-client-transports"
repository = "https://github.com/paritytech/jsonrpc"
version = "18.0.0"
edition = "2021"
rust-version = "1.56.1"

categories = [
"asynchronous",
Expand Down
7 changes: 4 additions & 3 deletions core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
[package]
name = "jsonrpc-core"
version = "18.0.0"
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"
keywords = ["jsonrpc", "json-rpc", "json", "rpc", "serde"]
license = "MIT"
name = "jsonrpc-core"
repository = "https://github.com/paritytech/jsonrpc"
version = "18.0.0"
edition = "2021"
rust-version = "1.56.1"

categories = [
"asynchronous",
Expand Down
7 changes: 4 additions & 3 deletions derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
[package]
name = "jsonrpc-derive"
version = "18.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
documentation = "https://docs.rs/jsonrpc-derive/"
description = "High level, typed wrapper for `jsonrpc-core`"
edition = "2018"
homepage = "https://github.com/paritytech/jsonrpc"
license = "MIT"
name = "jsonrpc-derive"
repository = "https://github.com/paritytech/jsonrpc"
version = "18.0.0"
edition = "2021"
rust-version = "1.56.1"

[lib]
proc-macro = true
Expand Down
7 changes: 4 additions & 3 deletions http/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
[package]
name = "jsonrpc-http-server"
version = "18.0.0"
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"
keywords = ["jsonrpc", "json-rpc", "json", "rpc", "server"]
license = "MIT"
name = "jsonrpc-http-server"
repository = "https://github.com/paritytech/jsonrpc"
version = "18.0.0"
edition = "2021"
rust-version = "1.56.1"

[dependencies]
futures = "0.3"
Expand Down
7 changes: 4 additions & 3 deletions ipc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
[package]
name = "jsonrpc-ipc-server"
version = "18.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
description = "IPC server for JSON-RPC"
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"
version = "18.0.0"
edition = "2021"
rust-version = "1.56.1"

[dependencies]
futures = "0.3"
Expand Down
7 changes: 4 additions & 3 deletions pubsub/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
[package]
name = "jsonrpc-pubsub"
version = "18.0.0"
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"
keywords = ["jsonrpc", "json-rpc", "json", "rpc", "macros"]
license = "MIT"
name = "jsonrpc-pubsub"
repository = "https://github.com/paritytech/jsonrpc"
version = "18.0.0"
edition = "2021"
rust-version = "1.56.1"

[dependencies]
futures = { version = "0.3", features = ["thread-pool"] }
Expand Down
7 changes: 4 additions & 3 deletions server-utils/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
[package]
name = "jsonrpc-server-utils"
version = "18.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
description = "Server utils for jsonrpc-core crate."
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"
version = "18.0.0"
edition = "2021"
rust-version = "1.56.1"

[dependencies]
bytes = "1.0"
Expand Down
7 changes: 4 additions & 3 deletions stdio/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
[package]
name = "jsonrpc-stdio-server"
version = "18.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
description = "STDIN/STDOUT server for JSON-RPC"
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"
version = "18.0.0"
edition = "2021"
rust-version = "1.56.1"

[dependencies]
futures = "0.3"
Expand Down
7 changes: 4 additions & 3 deletions tcp/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
[package]
name = "jsonrpc-tcp-server"
version = "18.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
description = "TCP/IP server for JSON-RPC"
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"
version = "18.0.0"
edition = "2021"
rust-version = "1.56.1"

[dependencies]
jsonrpc-core = { version = "18.0.0", path = "../core" }
Expand Down
7 changes: 4 additions & 3 deletions test/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
[package]
name = "jsonrpc-test"
description = "Simple test framework for JSON-RPC."
version = "18.0.0"
description = "Simple test framework for JSON-RPC."
documentation = "https://docs.rs/jsonrpc-test/"
authors = ["Tomasz Drwięga <tomasz@parity.io>"]
license = "MIT"
homepage = "https://github.com/paritytech/jsonrpc"
repository = "https://github.com/paritytech/jsonrpc"
documentation = "https://docs.rs/jsonrpc-test/"
edition = "2018"
edition = "2021"
rust-version = "1.56.1"

[dependencies]
jsonrpc-core = { version = "18.0.0", path = "../core" }
Expand Down
7 changes: 4 additions & 3 deletions ws/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
[package]
name = "jsonrpc-ws-server"
version = "18.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
description = "WebSockets server for JSON-RPC"
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"
version = "18.0.0"
edition = "2021"
rust-version = "1.56.1"

[dependencies]
futures = "0.3"
Expand Down

0 comments on commit 1e8d60c

Please sign in to comment.