mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-06 05:38:00 +00:00
e89d0fca35
Lifting some more dependencies to the workspace. Just using the most-often updated ones for now. It can be reproduced locally. ```sh # First you can check if there would be semver incompatible bumps (looks good in this case): $ zepter transpose dependency lift-to-workspace --ignore-errors syn quote thiserror "regex:^serde.*" # Then apply the changes: $ zepter transpose dependency lift-to-workspace --version-resolver=highest syn quote thiserror "regex:^serde.*" --fix # And format the changes: $ taplo format --config .config/taplo.toml ``` --------- Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>
33 lines
1.2 KiB
TOML
33 lines
1.2 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.22", features = ["client-core", "macros", "server"] }
|
|
log = { workspace = true, default-features = true }
|
|
parking_lot = "0.12.1"
|
|
serde = { features = ["derive"], workspace = true, default-features = true }
|
|
thiserror = { workspace = true }
|
|
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 = { workspace = true, default-features = true }
|
|
sc-rpc = { path = "../../../rpc", features = ["test-helpers"] }
|
|
substrate-test-runtime-client = { path = "../../../../test-utils/runtime/client" }
|
|
tokio = { version = "1.22.0", features = ["macros"] }
|