Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
parity
Mirrored projects
jsonrpsee
Commits
28c8ba52
Unverified
Commit
28c8ba52
authored
Nov 18, 2022
by
Niklas Adolfsson
Committed by
GitHub
Nov 18, 2022
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
Changes
4
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
client/transport/Cargo.toml
View file @
28c8ba52
...
...
@@ -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
}
...
...
client/wasm-client/Cargo.toml
View file @
28c8ba52
...
...
@@ -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-w
s
-client"
documentation
=
"https://docs.rs/jsonrpsee-w
asm
-client"
[dependencies]
jsonrpsee-types
=
{
path
=
"../../types"
,
version
=
"0.16.0"
}
...
...
jsonrpsee/src/lib.rs
View file @
28c8ba52
...
...
@@ -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.
...
...
server/Cargo.toml
View file @
28c8ba52
...
...
@@ -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"
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment