mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-15 17:21:08 +00:00
deps: update jsonrpsee 0.2.0 (#285)
* deps: update jsonrpsee 0.2.0 The motivation is to avoid pinning certain alpha versions and to avoid breaking users builds without having to some `Cargo.lock` updating. * cargo fmt * fix tests * fix a few clippy lints * cargo fmt
This commit is contained in:
+8
-7
@@ -19,9 +19,9 @@ include = ["Cargo.toml", "src/**/*.rs", "README.md", "LICENSE"]
|
||||
[features]
|
||||
default = ["tokio1"]
|
||||
client = ["substrate-subxt-client"]
|
||||
# jsonrpsee http client can be configured to use tokio02 or tokio1.
|
||||
tokio02 = ["jsonrpsee-http-client/tokio02"]
|
||||
tokio1 = ["jsonrpsee-http-client/tokio1"]
|
||||
# jsonrpsee can be configured to use tokio02 or tokio1.
|
||||
tokio02 = ["jsonrpsee-http-client/tokio02", "jsonrpsee-ws-client/tokio02"]
|
||||
tokio1 = ["jsonrpsee-http-client/tokio1", "jsonrpsee-ws-client/tokio1"]
|
||||
|
||||
[dependencies]
|
||||
async-trait = "0.1.49"
|
||||
@@ -29,9 +29,10 @@ codec = { package = "parity-scale-codec", version = "2.1", default-features = fa
|
||||
dyn-clone = "1.0.4"
|
||||
futures = "0.3.13"
|
||||
hex = "0.4.3"
|
||||
jsonrpsee-proc-macros = "=0.2.0-alpha.6"
|
||||
jsonrpsee-ws-client = "=0.2.0-alpha.6"
|
||||
jsonrpsee-http-client = { version = "=0.2.0-alpha.6", default-features = false }
|
||||
jsonrpsee-proc-macros = "0.2.0"
|
||||
jsonrpsee-ws-client = { version = "0.2.0", default-features = false }
|
||||
jsonrpsee-http-client = { version = "0.2.0", default-features = false }
|
||||
jsonrpsee-types = "0.2.0"
|
||||
log = "0.4.14"
|
||||
num-traits = { version = "0.2.14", default-features = false }
|
||||
serde = { version = "1.0.124", features = ["derive"] }
|
||||
@@ -56,7 +57,7 @@ pallet-staking = "3.0.0"
|
||||
|
||||
[dev-dependencies]
|
||||
assert_matches = "1.5.0"
|
||||
async-std = { version = "1.9.0", features = ["attributes"] }
|
||||
async-std = { version = "1.9.0", features = ["attributes", "tokio1"] }
|
||||
env_logger = "0.8.3"
|
||||
tempdir = "0.3.7"
|
||||
wabt = "0.10.0"
|
||||
|
||||
Reference in New Issue
Block a user