Files
pezkuwi-subxt/substrate/client/consensus/beefy/rpc/Cargo.toml
T
2023-06-21 11:37:11 +00:00

30 lines
1.3 KiB
TOML

[package]
name = "sc-consensus-beefy-rpc"
version = "4.0.0-dev"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2021"
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
repository = "https://github.com/paritytech/substrate"
description = "RPC for the BEEFY Client gadget for substrate"
homepage = "https://substrate.io"
[dependencies]
codec = { package = "parity-scale-codec", version = "3.6.1", features = ["derive"] }
futures = "0.3.21"
jsonrpsee = { version = "0.16.2", features = ["client-core", "server", "macros"] }
log = "0.4"
parking_lot = "0.12.1"
serde = { version = "1.0.163", features = ["derive"] }
thiserror = "1.0"
sc-consensus-beefy = { version = "4.0.0-dev", path = "../" }
sp-consensus-beefy = { version = "4.0.0-dev", path = "../../../../primitives/consensus/beefy" }
sc-rpc = { version = "4.0.0-dev", path = "../../../rpc" }
sp-core = { version = "21.0.0", path = "../../../../primitives/core" }
sp-runtime = { version = "24.0.0", path = "../../../../primitives/runtime" }
[dev-dependencies]
serde_json = "1.0.85"
sc-rpc = { version = "4.0.0-dev", features = ["test-helpers"], path = "../../../rpc" }
substrate-test-runtime-client = { version = "2.0.0", path = "../../../../test-utils/runtime/client" }
tokio = { version = "1.22.0", features = ["macros"] }