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/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..7b6299200b 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 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"