mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 00:37:57 +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
61 lines
2.4 KiB
TOML
61 lines
2.4 KiB
TOML
[package]
|
|
name = "sc-rpc-spec-v2"
|
|
version = "0.34.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
|
homepage = "https://substrate.io"
|
|
repository.workspace = true
|
|
description = "Substrate RPC interface v2."
|
|
readme = "README.md"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[dependencies]
|
|
jsonrpsee = { version = "0.22", features = ["client-core", "macros", "server"] }
|
|
# Internal chain structures for "chain_spec".
|
|
sc-chain-spec = { path = "../chain-spec" }
|
|
# Pool for submitting extrinsics required by "transaction"
|
|
sc-transaction-pool-api = { path = "../transaction-pool/api" }
|
|
sp-core = { path = "../../primitives/core" }
|
|
sp-runtime = { path = "../../primitives/runtime" }
|
|
sp-api = { path = "../../primitives/api" }
|
|
sp-rpc = { path = "../../primitives/rpc" }
|
|
sp-blockchain = { path = "../../primitives/blockchain" }
|
|
sp-version = { path = "../../primitives/version" }
|
|
sc-client-api = { path = "../api" }
|
|
sc-utils = { path = "../utils" }
|
|
sc-rpc = { path = "../rpc" }
|
|
codec = { package = "parity-scale-codec", version = "3.6.1" }
|
|
thiserror = { workspace = true }
|
|
serde = { workspace = true, default-features = true }
|
|
hex = "0.4"
|
|
futures = "0.3.30"
|
|
parking_lot = "0.12.1"
|
|
tokio-stream = { version = "0.1.14", features = ["sync"] }
|
|
tokio = { version = "1.22.0", features = ["sync"] }
|
|
array-bytes = "6.1"
|
|
log = { workspace = true, default-features = true }
|
|
futures-util = { version = "0.3.30", default-features = false }
|
|
rand = "0.8.5"
|
|
|
|
[dev-dependencies]
|
|
jsonrpsee = { version = "0.22", features = ["server", "ws-client"] }
|
|
serde_json = { workspace = true, default-features = true }
|
|
tokio = { version = "1.22.0", features = ["macros"] }
|
|
substrate-test-runtime-client = { path = "../../test-utils/runtime/client" }
|
|
substrate-test-runtime = { path = "../../test-utils/runtime" }
|
|
substrate-test-runtime-transaction-pool = { path = "../../test-utils/runtime/transaction-pool" }
|
|
sp-consensus = { path = "../../primitives/consensus/common" }
|
|
sp-externalities = { path = "../../primitives/externalities" }
|
|
sp-maybe-compressed-blob = { path = "../../primitives/maybe-compressed-blob" }
|
|
sc-block-builder = { path = "../block-builder" }
|
|
sc-service = { path = "../service", features = ["test-helpers"] }
|
|
assert_matches = "1.3.0"
|
|
pretty_assertions = "1.2.1"
|
|
sc-transaction-pool = { path = "../transaction-pool" }
|