From 84ef1ccf6062baf4e88763f97199612956e6a340 Mon Sep 17 00:00:00 2001 From: Niklas Adolfsson Date: Wed, 16 Nov 2022 10:31:25 +0100 Subject: [PATCH 1/2] fix outdated features and docs --- jsonrpsee/src/lib.rs | 2 -- server/Cargo.toml | 4 ++-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/jsonrpsee/src/lib.rs b/jsonrpsee/src/lib.rs index d5f97998ac..24cfc5ada9 100644 --- a/jsonrpsee/src/lib.rs +++ b/jsonrpsee/src/lib.rs @@ -36,10 +36,8 @@ //! The following features are available. //! //! - **`http-client`** - JSON-RPC client functionality over HTTP protocol. -//! - **`http-server`** - JSON-RPC server functionality over HTTP protocol. //! - **`wasm-client`** - JSON-RPC client functionality over web-sys. //! - **`ws-client`** - JSON-RPC client functionality over WebSocket protocol. -//! - **`ws-server`** - JSON-RPC server functionality over WebSocket protocol. //! - **`macros`** - JSON-RPC API generation convenience by derive macros. //! - **`client-core`** - Enables minimal client features to generate the RPC API without transports. //! - **`client`** - Enables all client features including transports. diff --git a/server/Cargo.toml b/server/Cargo.toml index ab4bbb626d..2cbee5343c 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -2,12 +2,12 @@ name = "jsonrpsee-server" version = "0.16.0" authors = ["Parity Technologies ", "Pierre Krieger "] -description = "WebSocket server for JSON-RPC" +description = "JSON-RPC server that supports both HTTP and WebSocket transports" edition = "2021" license = "MIT" repository = "https://github.com/paritytech/jsonrpsee" homepage = "https://github.com/paritytech/jsonrpsee" -documentation = "https://docs.rs/jsonrpsee-ws-server" +documentation = "https://docs.rs/jsonrpsee-server" [dependencies] futures-channel = "0.3.14" From 6aece0a6165c570c7d05d97fb809c1cc2621d3e7 Mon Sep 17 00:00:00 2001 From: Niklas Adolfsson Date: Fri, 18 Nov 2022 13:21:09 +0100 Subject: [PATCH 2/2] fix more nits --- client/transport/Cargo.toml | 4 ++-- client/wasm-client/Cargo.toml | 2 +- server/Cargo.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/client/transport/Cargo.toml b/client/transport/Cargo.toml index 9a261ed1b6..4316082a19 100644 --- a/client/transport/Cargo.toml +++ b/client/transport/Cargo.toml @@ -2,12 +2,12 @@ name = "jsonrpsee-client-transport" version = "0.16.0" authors = ["Parity Technologies ", "Pierre Krieger "] -description = "WebSocket client for JSON-RPC" +description = "JSON-RPC client transport" edition = "2021" license = "MIT" repository = "https://github.com/paritytech/jsonrpsee" homepage = "https://github.com/paritytech/jsonrpsee" -documentation = "https://docs.rs/jsonrpsee-ws-client" +documentation = "https://docs.rs/jsonrpsee-client-transport" [dependencies] jsonrpsee-types = { path = "../../types", version = "0.16.0", optional = true } diff --git a/client/wasm-client/Cargo.toml b/client/wasm-client/Cargo.toml index 104fede76a..1e453d98ae 100644 --- a/client/wasm-client/Cargo.toml +++ b/client/wasm-client/Cargo.toml @@ -7,7 +7,7 @@ edition = "2021" license = "MIT" repository = "https://github.com/paritytech/jsonrpsee" homepage = "https://github.com/paritytech/jsonrpsee" -documentation = "https://docs.rs/jsonrpsee-ws-client" +documentation = "https://docs.rs/jsonrpsee-wasm-client" [dependencies] jsonrpsee-types = { path = "../../types", version = "0.16.0" } diff --git a/server/Cargo.toml b/server/Cargo.toml index 2cbee5343c..7b6299200b 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -2,7 +2,7 @@ name = "jsonrpsee-server" version = "0.16.0" authors = ["Parity Technologies ", "Pierre Krieger "] -description = "JSON-RPC server that supports both HTTP and WebSocket transports" +description = "JSON-RPC server that supports HTTP and WebSocket transports" edition = "2021" license = "MIT" repository = "https://github.com/paritytech/jsonrpsee"