Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
parity
Mirrored projects
jsonrpsee
Commits
57a88548
Unverified
Commit
57a88548
authored
May 11, 2022
by
Niklas Adolfsson
Committed by
GitHub
May 11, 2022
Browse files
chore(release): v0.13.0 (#764)
* chore(release): v0.13.0 * Update CHANGELOG.md
parent
2be4a66f
Pipeline
#193090
passed with stages
in 8 minutes and 31 seconds
Changes
15
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
CHANGELOG.md
View file @
57a88548
...
...
@@ -6,6 +6,18 @@ The format is based on [Keep a Changelog].
## [Unreleased]
## [v0.13.0] - 2022-05-11
v0.13.0 is release that adds health API support for the HTTP server and a few bug fixes.
### [Added]
feat: add http health API
[
#763
](
https://github.com/paritytech/jsonrpsee/pull/763
)
### [Fixed]
-
hide internal macros from public interface
[
#755
](
https://github.com/paritytech/jsonrpsee/pull/755
)
-
fix: add
`core`
behind
`http-server`
feature
[
#760
](
https://github.com/paritytech/jsonrpsee/pull/760
)
## [v0.12.0] - 2022-05-06
v0.12.0 is mainly a patch release with some minor features added.
...
...
benches/Cargo.toml
View file @
57a88548
[package]
name
=
"jsonrpsee-benchmarks"
version
=
"0.1
2
.0"
version
=
"0.1
3
.0"
authors
=
[
"Parity Technologies <admin@parity.io>"
]
description
=
"Benchmarks for jsonrpsee"
edition
=
"2021"
...
...
client/http-client/Cargo.toml
View file @
57a88548
[package]
name
=
"jsonrpsee-http-client"
version
=
"0.1
2
.0"
version
=
"0.1
3
.0"
authors
=
[
"Parity Technologies <admin@parity.io>"
,
"Pierre Krieger <pierre.krieger1708@gmail.com>"
]
description
=
"HTTP client for JSON-RPC"
edition
=
"2021"
...
...
@@ -14,8 +14,8 @@ async-trait = "0.1"
rustc-hash
=
"1"
hyper
=
{
version
=
"0.14.10"
,
features
=
[
"client"
,
"http1"
,
"http2"
,
"tcp"
]
}
hyper-rustls
=
{
version
=
"0.23"
,
optional
=
true
}
jsonrpsee-types
=
{
path
=
"../../types"
,
version
=
"0.1
2
.0"
}
jsonrpsee-core
=
{
path
=
"../../core"
,
version
=
"0.1
2
.0"
,
features
=
[
"client"
,
"http-helpers"
]
}
jsonrpsee-types
=
{
path
=
"../../types"
,
version
=
"0.1
3
.0"
}
jsonrpsee-core
=
{
path
=
"../../core"
,
version
=
"0.1
3
.0"
,
features
=
[
"client"
,
"http-helpers"
]
}
serde
=
{
version
=
"1.0"
,
default-features
=
false
,
features
=
["derive"]
}
serde_json
=
"1.0"
thiserror
=
"1.0"
...
...
client/transport/Cargo.toml
View file @
57a88548
[package]
name
=
"jsonrpsee-client-transport"
version
=
"0.1
2
.0"
version
=
"0.1
3
.0"
authors
=
[
"Parity Technologies <admin@parity.io>"
,
"Pierre Krieger <pierre.krieger1708@gmail.com>"
]
description
=
"WebSocket client for JSON-RPC"
edition
=
"2021"
...
...
@@ -10,8 +10,8 @@ homepage = "https://github.com/paritytech/jsonrpsee"
documentation
=
"https://docs.rs/jsonrpsee-ws-client"
[dependencies]
jsonrpsee-types
=
{
path
=
"../../types"
,
version
=
"0.1
2
.0"
,
optional
=
true
}
jsonrpsee-core
=
{
path
=
"../../core"
,
version
=
"0.1
2
.0"
,
features
=
["client"]
}
jsonrpsee-types
=
{
path
=
"../../types"
,
version
=
"0.1
3
.0"
,
optional
=
true
}
jsonrpsee-core
=
{
path
=
"../../core"
,
version
=
"0.1
3
.0"
,
features
=
["client"]
}
tracing
=
"0.1"
# optional
...
...
client/wasm-client/Cargo.toml
View file @
57a88548
[package]
name
=
"jsonrpsee-wasm-client"
version
=
"0.1
2
.0"
version
=
"0.1
3
.0"
authors
=
[
"Parity Technologies <admin@parity.io>"
,
"Pierre Krieger <pierre.krieger1708@gmail.com>"
]
description
=
"WASM client for JSON-RPC"
edition
=
"2021"
...
...
@@ -10,9 +10,9 @@ homepage = "https://github.com/paritytech/jsonrpsee"
documentation
=
"https://docs.rs/jsonrpsee-ws-client"
[dependencies]
jsonrpsee-types
=
{
path
=
"../../types"
,
version
=
"0.1
2
.0"
}
jsonrpsee-client-transport
=
{
path
=
"../transport"
,
version
=
"0.1
2
.0"
,
features
=
["web"]
}
jsonrpsee-core
=
{
path
=
"../../core"
,
version
=
"0.1
2
.0"
,
features
=
["async-wasm-client"]
}
jsonrpsee-types
=
{
path
=
"../../types"
,
version
=
"0.1
3
.0"
}
jsonrpsee-client-transport
=
{
path
=
"../transport"
,
version
=
"0.1
3
.0"
,
features
=
["web"]
}
jsonrpsee-core
=
{
path
=
"../../core"
,
version
=
"0.1
3
.0"
,
features
=
["async-wasm-client"]
}
[dev-dependencies]
env_logger
=
"0.9"
...
...
client/ws-client/Cargo.toml
View file @
57a88548
[package]
name
=
"jsonrpsee-ws-client"
version
=
"0.1
2
.0"
version
=
"0.1
3
.0"
authors
=
[
"Parity Technologies <admin@parity.io>"
,
"Pierre Krieger <pierre.krieger1708@gmail.com>"
]
description
=
"WebSocket client for JSON-RPC"
edition
=
"2021"
...
...
@@ -10,9 +10,9 @@ homepage = "https://github.com/paritytech/jsonrpsee"
documentation
=
"https://docs.rs/jsonrpsee-ws-client"
[dependencies]
jsonrpsee-types
=
{
path
=
"../../types"
,
version
=
"0.1
2
.0"
}
jsonrpsee-client-transport
=
{
path
=
"../transport"
,
version
=
"0.1
2
.0"
,
features
=
["ws"]
}
jsonrpsee-core
=
{
path
=
"../../core"
,
version
=
"0.1
2
.0"
,
features
=
["async-client"]
}
jsonrpsee-types
=
{
path
=
"../../types"
,
version
=
"0.1
3
.0"
}
jsonrpsee-client-transport
=
{
path
=
"../transport"
,
version
=
"0.1
3
.0"
,
features
=
["ws"]
}
jsonrpsee-core
=
{
path
=
"../../core"
,
version
=
"0.1
3
.0"
,
features
=
["async-client"]
}
[dev-dependencies]
env_logger
=
"0.9"
...
...
core/Cargo.toml
View file @
57a88548
[package]
name
=
"jsonrpsee-core"
version
=
"0.1
2
.0"
version
=
"0.1
3
.0"
authors
=
[
"Parity Technologies <admin@parity.io>"
]
description
=
"Utilities for jsonrpsee"
edition
=
"2021"
...
...
@@ -11,7 +11,7 @@ anyhow = "1"
async-trait
=
"0.1"
beef
=
{
version
=
"0.5.1"
,
features
=
["impl_serde"]
}
futures-channel
=
"0.3.14"
jsonrpsee-types
=
{
path
=
"../types"
,
version
=
"0.1
2
.0"
}
jsonrpsee-types
=
{
path
=
"../types"
,
version
=
"0.1
3
.0"
}
thiserror
=
"1"
serde
=
{
version
=
"1.0"
,
default-features
=
false
,
features
=
["derive"]
}
serde_json
=
{
version
=
"1"
,
features
=
["raw_value"]
}
...
...
examples/Cargo.toml
View file @
57a88548
[package]
name
=
"jsonrpsee-examples"
version
=
"0.1
2
.0"
version
=
"0.1
3
.0"
authors
=
[
"Parity Technologies <admin@parity.io>"
]
description
=
"Examples for jsonrpsee"
edition
=
"2021"
...
...
http-server/Cargo.toml
View file @
57a88548
[package]
name
=
"jsonrpsee-http-server"
version
=
"0.1
2
.0"
version
=
"0.1
3
.0"
authors
=
[
"Parity Technologies <admin@parity.io>"
,
"Pierre Krieger <pierre.krieger1708@gmail.com>"
]
description
=
"HTTP server for JSON-RPC"
edition
=
"2021"
...
...
@@ -13,8 +13,8 @@ documentation = "https://docs.rs/jsonrpsee-http-server"
hyper
=
{
version
=
"0.14.10"
,
features
=
[
"server"
,
"http1"
,
"http2"
,
"tcp"
]
}
futures-channel
=
"0.3.14"
futures-util
=
{
version
=
"0.3.14"
,
default-features
=
false
}
jsonrpsee-types
=
{
path
=
"../types"
,
version
=
"0.1
2
.0"
}
jsonrpsee-core
=
{
path
=
"../core"
,
version
=
"0.1
2
.0"
,
features
=
[
"server"
,
"http-helpers"
]
}
jsonrpsee-types
=
{
path
=
"../types"
,
version
=
"0.1
3
.0"
}
jsonrpsee-core
=
{
path
=
"../core"
,
version
=
"0.1
3
.0"
,
features
=
[
"server"
,
"http-helpers"
]
}
globset
=
"0.4"
lazy_static
=
"1.4"
tracing
=
"0.1"
...
...
jsonrpsee/Cargo.toml
View file @
57a88548
[package]
name
=
"jsonrpsee"
description
=
"JSON-RPC crate"
version
=
"0.1
2
.0"
version
=
"0.1
3
.0"
authors
=
[
"Parity Technologies <admin@parity.io>"
,
"Pierre Krieger <pierre.krieger1708@gmail.com>"
]
license
=
"MIT"
edition
=
"2021"
...
...
@@ -12,15 +12,15 @@ documentation = "https://docs.rs/jsonrpsee"
[dependencies]
# No support for namespaced features yet so workspace dependencies are prefixed with `jsonrpsee-`.
# See https://github.com/rust-lang/cargo/issues/5565 for more details.
jsonrpsee-http-client
=
{
path
=
"../client/http-client"
,
version
=
"0.1
2
.0"
,
optional
=
true
}
jsonrpsee-ws-client
=
{
path
=
"../client/ws-client"
,
version
=
"0.1
2
.0"
,
optional
=
true
}
jsonrpsee-wasm-client
=
{
path
=
"../client/wasm-client"
,
version
=
"0.1
2
.0"
,
optional
=
true
}
jsonrpsee-client-transport
=
{
path
=
"../client/transport"
,
version
=
"0.1
2
.0"
,
optional
=
true
}
jsonrpsee-http-server
=
{
path
=
"../http-server"
,
version
=
"0.1
2
.0"
,
optional
=
true
}
jsonrpsee-ws-server
=
{
path
=
"../ws-server"
,
version
=
"0.1
2
.0"
,
optional
=
true
}
jsonrpsee-proc-macros
=
{
path
=
"../proc-macros"
,
version
=
"0.1
2
.0"
,
optional
=
true
}
jsonrpsee-core
=
{
path
=
"../core"
,
version
=
"0.1
2
.0"
,
optional
=
true
}
jsonrpsee-types
=
{
path
=
"../types"
,
version
=
"0.1
2
.0"
,
optional
=
true
}
jsonrpsee-http-client
=
{
path
=
"../client/http-client"
,
version
=
"0.1
3
.0"
,
optional
=
true
}
jsonrpsee-ws-client
=
{
path
=
"../client/ws-client"
,
version
=
"0.1
3
.0"
,
optional
=
true
}
jsonrpsee-wasm-client
=
{
path
=
"../client/wasm-client"
,
version
=
"0.1
3
.0"
,
optional
=
true
}
jsonrpsee-client-transport
=
{
path
=
"../client/transport"
,
version
=
"0.1
3
.0"
,
optional
=
true
}
jsonrpsee-http-server
=
{
path
=
"../http-server"
,
version
=
"0.1
3
.0"
,
optional
=
true
}
jsonrpsee-ws-server
=
{
path
=
"../ws-server"
,
version
=
"0.1
3
.0"
,
optional
=
true
}
jsonrpsee-proc-macros
=
{
path
=
"../proc-macros"
,
version
=
"0.1
3
.0"
,
optional
=
true
}
jsonrpsee-core
=
{
path
=
"../core"
,
version
=
"0.1
3
.0"
,
optional
=
true
}
jsonrpsee-types
=
{
path
=
"../types"
,
version
=
"0.1
3
.0"
,
optional
=
true
}
tracing
=
{
version
=
"0.1"
,
optional
=
true
}
[features]
...
...
proc-macros/Cargo.toml
View file @
57a88548
[package]
name
=
"jsonrpsee-proc-macros"
description
=
"Procedueral macros for jsonrpsee"
version
=
"0.1
2
.0"
version
=
"0.1
3
.0"
authors
=
[
"Parity Technologies <admin@parity.io>"
,
"Pierre Krieger <pierre.krieger1708@gmail.com>"
]
license
=
"MIT"
edition
=
"2021"
...
...
test-utils/Cargo.toml
View file @
57a88548
[package]
name
=
"jsonrpsee-test-utils"
version
=
"0.1
2
.0"
version
=
"0.1
3
.0"
authors
=
[
"Parity Technologies <admin@parity.io>"
]
license
=
"MIT"
edition
=
"2021"
...
...
tests/Cargo.toml
View file @
57a88548
[package]
name
=
"jsonrpsee-integration-tests"
version
=
"0.1
2
.0"
version
=
"0.1
3
.0"
authors
=
[
"Parity Technologies <admin@parity.io>"
]
description
=
"Integration tests for jsonrpsee"
edition
=
"2021"
...
...
types/Cargo.toml
View file @
57a88548
[package]
name
=
"jsonrpsee-types"
version
=
"0.1
2
.0"
version
=
"0.1
3
.0"
authors
=
[
"Parity Technologies <admin@parity.io>"
]
description
=
"Shared types for jsonrpsee"
edition
=
"2021"
...
...
ws-server/Cargo.toml
View file @
57a88548
[package]
name
=
"jsonrpsee-ws-server"
version
=
"0.1
2
.0"
version
=
"0.1
3
.0"
authors
=
[
"Parity Technologies <admin@parity.io>"
,
"Pierre Krieger <pierre.krieger1708@gmail.com>"
]
description
=
"WebSocket server for JSON-RPC"
edition
=
"2021"
...
...
@@ -12,8 +12,8 @@ documentation = "https://docs.rs/jsonrpsee-ws-server"
[dependencies]
futures-channel
=
"0.3.14"
futures-util
=
{
version
=
"0.3.14"
,
default-features
=
false
,
features
=
[
"io"
,
"async-await-macro"
]
}
jsonrpsee-types
=
{
path
=
"../types"
,
version
=
"0.1
2
.0"
}
jsonrpsee-core
=
{
path
=
"../core"
,
version
=
"0.1
2
.0"
,
features
=
[
"server"
,
"soketto"
]
}
jsonrpsee-types
=
{
path
=
"../types"
,
version
=
"0.1
3
.0"
}
jsonrpsee-core
=
{
path
=
"../core"
,
version
=
"0.1
3
.0"
,
features
=
[
"server"
,
"soketto"
]
}
tracing
=
"0.1"
serde_json
=
{
version
=
"1"
,
features
=
["raw_value"]
}
soketto
=
"0.7.1"
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a 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