-
Notifications
You must be signed in to change notification settings - Fork 174
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Bump jsonrpsee version to 0.15.1 Signed-off-by: Alexandru Vasile <[email protected]> * Update changelog Signed-off-by: Alexandru Vasile <[email protected]> * Update CHANGELOG.md Co-authored-by: James Wilson <[email protected]> Co-authored-by: James Wilson <[email protected]>
- Loading branch information
Showing
15 changed files
with
45 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "jsonrpsee-benchmarks" | ||
version = "0.15.0" | ||
version = "0.15.1" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
description = "Benchmarks for jsonrpsee" | ||
edition = "2021" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "jsonrpsee-http-client" | ||
version = "0.15.0" | ||
version = "0.15.1" | ||
authors = ["Parity Technologies <[email protected]>", "Pierre Krieger <[email protected]>"] | ||
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.15.0" } | ||
jsonrpsee-core = { path = "../../core", version = "0.15.0", features = ["client", "http-helpers"] } | ||
jsonrpsee-types = { path = "../../types", version = "0.15.1" } | ||
jsonrpsee-core = { path = "../../core", version = "0.15.1", features = ["client", "http-helpers"] } | ||
serde = { version = "1.0", default-features = false, features = ["derive"] } | ||
serde_json = "1.0" | ||
thiserror = "1.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "jsonrpsee-client-transport" | ||
version = "0.15.0" | ||
version = "0.15.1" | ||
authors = ["Parity Technologies <[email protected]>", "Pierre Krieger <[email protected]>"] | ||
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.15.0", optional = true } | ||
jsonrpsee-core = { path = "../../core", version = "0.15.0", features = ["client"] } | ||
jsonrpsee-types = { path = "../../types", version = "0.15.1", optional = true } | ||
jsonrpsee-core = { path = "../../core", version = "0.15.1", features = ["client"] } | ||
tracing = "0.1.34" | ||
|
||
# optional | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "jsonrpsee-wasm-client" | ||
version = "0.15.0" | ||
version = "0.15.1" | ||
authors = ["Parity Technologies <[email protected]>", "Pierre Krieger <[email protected]>"] | ||
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.15.0" } | ||
jsonrpsee-client-transport = { path = "../transport", version = "0.15.0", features = ["web"] } | ||
jsonrpsee-core = { path = "../../core", version = "0.15.0", features = ["async-wasm-client"] } | ||
jsonrpsee-types = { path = "../../types", version = "0.15.1" } | ||
jsonrpsee-client-transport = { path = "../transport", version = "0.15.1", features = ["web"] } | ||
jsonrpsee-core = { path = "../../core", version = "0.15.1", features = ["async-wasm-client"] } | ||
|
||
[dev-dependencies] | ||
tracing-subscriber = { version = "0.3.3", features = ["env-filter"] } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "jsonrpsee-ws-client" | ||
version = "0.15.0" | ||
version = "0.15.1" | ||
authors = ["Parity Technologies <[email protected]>", "Pierre Krieger <[email protected]>"] | ||
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.15.0" } | ||
jsonrpsee-client-transport = { path = "../transport", version = "0.15.0", features = ["ws"] } | ||
jsonrpsee-core = { path = "../../core", version = "0.15.0", features = ["async-client"] } | ||
jsonrpsee-types = { path = "../../types", version = "0.15.1" } | ||
jsonrpsee-client-transport = { path = "../transport", version = "0.15.1", features = ["ws"] } | ||
jsonrpsee-core = { path = "../../core", version = "0.15.1", features = ["async-client"] } | ||
http = "0.2.0" | ||
|
||
[dev-dependencies] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "jsonrpsee-core" | ||
version = "0.15.0" | ||
version = "0.15.1" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
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.15.0" } | ||
jsonrpsee-types = { path = "../types", version = "0.15.1" } | ||
thiserror = "1" | ||
serde = { version = "1.0", default-features = false, features = ["derive"] } | ||
serde_json = { version = "1", features = ["raw_value"] } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "jsonrpsee-examples" | ||
version = "0.15.0" | ||
version = "0.15.1" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
description = "Examples for jsonrpsee" | ||
edition = "2021" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "jsonrpsee-http-server" | ||
version = "0.15.0" | ||
version = "0.15.1" | ||
authors = ["Parity Technologies <[email protected]>", "Pierre Krieger <[email protected]>"] | ||
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.15.0" } | ||
jsonrpsee-core = { path = "../core", version = "0.15.0", features = ["server", "http-helpers"] } | ||
jsonrpsee-types = { path = "../types", version = "0.15.1" } | ||
jsonrpsee-core = { path = "../core", version = "0.15.1", features = ["server", "http-helpers"] } | ||
tracing = "0.1.34" | ||
tracing-futures = "0.2.5" | ||
serde_json = { version = "1.0", features = ["raw_value"] } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
name = "jsonrpsee" | ||
description = "JSON-RPC crate" | ||
version = "0.15.0" | ||
version = "0.15.1" | ||
authors = ["Parity Technologies <[email protected]>", "Pierre Krieger <[email protected]>"] | ||
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.15.0", optional = true } | ||
jsonrpsee-ws-client = { path = "../client/ws-client", version = "0.15.0", optional = true } | ||
jsonrpsee-wasm-client = { path = "../client/wasm-client", version = "0.15.0", optional = true } | ||
jsonrpsee-client-transport = { path = "../client/transport", version = "0.15.0", optional = true } | ||
jsonrpsee-http-server = { path = "../http-server", version = "0.15.0", optional = true } | ||
jsonrpsee-ws-server = { path = "../ws-server", version = "0.15.0", optional = true } | ||
jsonrpsee-proc-macros = { path = "../proc-macros", version = "0.15.0", optional = true } | ||
jsonrpsee-core = { path = "../core", version = "0.15.0", optional = true } | ||
jsonrpsee-types = { path = "../types", version = "0.15.0", optional = true } | ||
jsonrpsee-http-client = { path = "../client/http-client", version = "0.15.1", optional = true } | ||
jsonrpsee-ws-client = { path = "../client/ws-client", version = "0.15.1", optional = true } | ||
jsonrpsee-wasm-client = { path = "../client/wasm-client", version = "0.15.1", optional = true } | ||
jsonrpsee-client-transport = { path = "../client/transport", version = "0.15.1", optional = true } | ||
jsonrpsee-http-server = { path = "../http-server", version = "0.15.1", optional = true } | ||
jsonrpsee-ws-server = { path = "../ws-server", version = "0.15.1", optional = true } | ||
jsonrpsee-proc-macros = { path = "../proc-macros", version = "0.15.1", optional = true } | ||
jsonrpsee-core = { path = "../core", version = "0.15.1", optional = true } | ||
jsonrpsee-types = { path = "../types", version = "0.15.1", optional = true } | ||
tracing = { version = "0.1.34", optional = true } | ||
|
||
[features] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
name = "jsonrpsee-proc-macros" | ||
description = "Procedueral macros for jsonrpsee" | ||
version = "0.15.0" | ||
version = "0.15.1" | ||
authors = ["Parity Technologies <[email protected]>", "Pierre Krieger <[email protected]>"] | ||
license = "MIT" | ||
edition = "2021" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "jsonrpsee-test-utils" | ||
version = "0.15.0" | ||
version = "0.15.1" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
license = "MIT" | ||
edition = "2021" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "jsonrpsee-integration-tests" | ||
version = "0.15.0" | ||
version = "0.15.1" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
description = "Integration tests for jsonrpsee" | ||
edition = "2021" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "jsonrpsee-types" | ||
version = "0.15.0" | ||
version = "0.15.1" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
description = "Shared types for jsonrpsee" | ||
edition = "2021" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "jsonrpsee-ws-server" | ||
version = "0.15.0" | ||
version = "0.15.1" | ||
authors = ["Parity Technologies <[email protected]>", "Pierre Krieger <[email protected]>"] | ||
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.15.0" } | ||
jsonrpsee-core = { path = "../core", version = "0.15.0", features = ["server", "soketto"] } | ||
jsonrpsee-types = { path = "../types", version = "0.15.1" } | ||
jsonrpsee-core = { path = "../core", version = "0.15.1", features = ["server", "soketto"] } | ||
tracing = "0.1.34" | ||
serde_json = { version = "1", features = ["raw_value"] } | ||
soketto = "0.7.1" | ||
|