Unverified Commit 28c8ba52 authored by Niklas Adolfsson's avatar Niklas Adolfsson Committed by GitHub
Browse files

fix outdated features and docs (#938)

* fix outdated features and docs

* fix more nits
parent df82bed9
Pipeline #227485 failed with stages
in 1 minute and 54 seconds
......@@ -2,12 +2,12 @@
name = "jsonrpsee-client-transport"
version = "0.16.0"
authors = ["Parity Technologies <admin@parity.io>", "Pierre Krieger <pierre.krieger1708@gmail.com>"]
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 }
......
......@@ -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" }
......
......@@ -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.
......
......@@ -2,12 +2,12 @@
name = "jsonrpsee-server"
version = "0.16.0"
authors = ["Parity Technologies <admin@parity.io>", "Pierre Krieger <pierre.krieger1708@gmail.com>"]
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"
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment