Skip to content

Commit

Permalink
fix outdated features and docs (#938)
Browse files Browse the repository at this point in the history
* fix outdated features and docs

* fix more nits
  • Loading branch information
niklasad1 authored Nov 18, 2022
1 parent df82bed commit 28c8ba5
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 7 deletions.
4 changes: 2 additions & 2 deletions client/transport/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
name = "jsonrpsee-client-transport"
version = "0.16.0"
authors = ["Parity Technologies <[email protected]>", "Pierre Krieger <[email protected]>"]
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 }
Expand Down
2 changes: 1 addition & 1 deletion client/wasm-client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }
Expand Down
2 changes: 0 additions & 2 deletions jsonrpsee/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
4 changes: 2 additions & 2 deletions server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
name = "jsonrpsee-server"
version = "0.16.0"
authors = ["Parity Technologies <[email protected]>", "Pierre Krieger <[email protected]>"]
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"
Expand Down

0 comments on commit 28c8ba5

Please sign in to comment.