mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 01:47:55 +00:00
8e95a3e1aa
Working towards migrating the `parity-bridges-common` repo inside `polkadot-sdk`. This PR upgrades some dependencies in order to align them with the versions used in `parity-bridges-common` Related to https://github.com/paritytech/parity-bridges-common/issues/2538
28 lines
792 B
TOML
28 lines
792 B
TOML
[package]
|
|
name = "substrate-rpc-client"
|
|
version = "0.33.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license = "Apache-2.0"
|
|
homepage = "https://substrate.io"
|
|
repository.workspace = true
|
|
description = "Shared JSON-RPC client"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[dependencies]
|
|
jsonrpsee = { version = "0.22", features = ["ws-client"] }
|
|
sc-rpc-api = { path = "../../../../client/rpc-api" }
|
|
async-trait = "0.1.79"
|
|
serde = { workspace = true, default-features = true }
|
|
sp-runtime = { path = "../../../../primitives/runtime" }
|
|
log = { workspace = true, default-features = true }
|
|
|
|
[dev-dependencies]
|
|
tokio = { version = "1.22.0", features = ["macros", "rt-multi-thread", "sync"] }
|
|
sp-core = { path = "../../../../primitives/core" }
|