mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-09 22:18:00 +00:00
3717ec3802
Related https://github.com/paritytech/polkadot-sdk/issues/3032 --- Using https://github.com/liamaharon/cargo-workspace-version-tools/ `cargo run -- sync --path ../polkadot-sdk` --------- Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> Co-authored-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>
33 lines
1.1 KiB
TOML
33 lines
1.1 KiB
TOML
[package]
|
|
name = "sc-consensus-beefy-rpc"
|
|
version = "13.0.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
|
repository.workspace = true
|
|
description = "RPC for the BEEFY Client gadget for substrate"
|
|
homepage = "https://substrate.io"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
codec = { package = "parity-scale-codec", version = "3.6.1", features = ["derive"] }
|
|
futures = "0.3.21"
|
|
jsonrpsee = { version = "0.20.3", features = ["client-core", "macros", "server"] }
|
|
log = "0.4"
|
|
parking_lot = "0.12.1"
|
|
serde = { version = "1.0.195", features = ["derive"] }
|
|
thiserror = "1.0"
|
|
sc-consensus-beefy = { path = ".." }
|
|
sp-consensus-beefy = { path = "../../../../primitives/consensus/beefy" }
|
|
sc-rpc = { path = "../../../rpc" }
|
|
sp-core = { path = "../../../../primitives/core" }
|
|
sp-runtime = { path = "../../../../primitives/runtime" }
|
|
|
|
[dev-dependencies]
|
|
serde_json = "1.0.111"
|
|
sc-rpc = { path = "../../../rpc", features = ["test-helpers"] }
|
|
substrate-test-runtime-client = { path = "../../../../test-utils/runtime/client" }
|
|
tokio = { version = "1.22.0", features = ["macros"] }
|