From 1e8d60cfd42a302f6cf7dd07bb414b9db099ffdb Mon Sep 17 00:00:00 2001 From: Dan Shields Date: Sat, 20 Nov 2021 22:04:02 -0700 Subject: [PATCH] edition = "2021" rust-version = "1.56.1" style for [package] field --- core-client/Cargo.toml | 7 ++++--- core-client/transports/Cargo.toml | 7 ++++--- core/Cargo.toml | 7 ++++--- derive/Cargo.toml | 7 ++++--- http/Cargo.toml | 7 ++++--- ipc/Cargo.toml | 7 ++++--- pubsub/Cargo.toml | 7 ++++--- server-utils/Cargo.toml | 7 ++++--- stdio/Cargo.toml | 7 ++++--- tcp/Cargo.toml | 7 ++++--- test/Cargo.toml | 7 ++++--- ws/Cargo.toml | 7 ++++--- 12 files changed, 48 insertions(+), 36 deletions(-) diff --git a/core-client/Cargo.toml b/core-client/Cargo.toml index e4340540..5fcba054 100644 --- a/core-client/Cargo.toml +++ b/core-client/Cargo.toml @@ -1,14 +1,15 @@ [package] +name = "jsonrpc-core-client" +version = "18.0.0" authors = ["Parity Technologies "] 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", diff --git a/core-client/transports/Cargo.toml b/core-client/transports/Cargo.toml index 1910c06b..a94addb6 100644 --- a/core-client/transports/Cargo.toml +++ b/core-client/transports/Cargo.toml @@ -1,14 +1,15 @@ [package] +name = "jsonrpc-client-transports" +version = "18.0.0" authors = ["Parity Technologies "] 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", diff --git a/core/Cargo.toml b/core/Cargo.toml index b1ba659e..861f09d5 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -1,14 +1,15 @@ [package] +name = "jsonrpc-core" +version = "18.0.0" authors = ["Parity Technologies "] 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", diff --git a/derive/Cargo.toml b/derive/Cargo.toml index 41ae32c1..225778ef 100644 --- a/derive/Cargo.toml +++ b/derive/Cargo.toml @@ -1,13 +1,14 @@ [package] +name = "jsonrpc-derive" +version = "18.0.0" authors = ["Parity Technologies "] 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 diff --git a/http/Cargo.toml b/http/Cargo.toml index 276c5f78..1488c799 100644 --- a/http/Cargo.toml +++ b/http/Cargo.toml @@ -1,14 +1,15 @@ [package] +name = "jsonrpc-http-server" +version = "18.0.0" authors = ["Parity Technologies "] 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" diff --git a/ipc/Cargo.toml b/ipc/Cargo.toml index 1bb5d66b..522a14fb 100644 --- a/ipc/Cargo.toml +++ b/ipc/Cargo.toml @@ -1,13 +1,14 @@ [package] +name = "jsonrpc-ipc-server" +version = "18.0.0" authors = ["Parity Technologies "] 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" diff --git a/pubsub/Cargo.toml b/pubsub/Cargo.toml index 89c46265..3e21aee1 100644 --- a/pubsub/Cargo.toml +++ b/pubsub/Cargo.toml @@ -1,14 +1,15 @@ [package] +name = "jsonrpc-pubsub" +version = "18.0.0" authors = ["Parity Technologies "] 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"] } diff --git a/server-utils/Cargo.toml b/server-utils/Cargo.toml index c03b74f0..f3d80a5f 100644 --- a/server-utils/Cargo.toml +++ b/server-utils/Cargo.toml @@ -1,14 +1,15 @@ [package] +name = "jsonrpc-server-utils" +version = "18.0.0" authors = ["Parity Technologies "] 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" diff --git a/stdio/Cargo.toml b/stdio/Cargo.toml index fe39581e..a5dbc581 100644 --- a/stdio/Cargo.toml +++ b/stdio/Cargo.toml @@ -1,13 +1,14 @@ [package] +name = "jsonrpc-stdio-server" +version = "18.0.0" authors = ["Parity Technologies "] 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" diff --git a/tcp/Cargo.toml b/tcp/Cargo.toml index 3b5eefe3..5fb68a39 100644 --- a/tcp/Cargo.toml +++ b/tcp/Cargo.toml @@ -1,13 +1,14 @@ [package] +name = "jsonrpc-tcp-server" +version = "18.0.0" authors = ["Parity Technologies "] 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" } diff --git a/test/Cargo.toml b/test/Cargo.toml index e3f15045..2f799602 100644 --- a/test/Cargo.toml +++ b/test/Cargo.toml @@ -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 "] 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" } diff --git a/ws/Cargo.toml b/ws/Cargo.toml index 3807dd81..42b8534c 100644 --- a/ws/Cargo.toml +++ b/ws/Cargo.toml @@ -1,13 +1,14 @@ [package] +name = "jsonrpc-ws-server" +version = "18.0.0" authors = ["Parity Technologies "] 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"