mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-28 20:17:57 +00:00
305aefc43d
This PR updates the version of `serde_json` to `1.0.108` throughout the codebase.
30 lines
1.1 KiB
TOML
30 lines
1.1 KiB
TOML
[package]
|
|
name = "sc-consensus-beefy-rpc"
|
|
version = "4.0.0-dev"
|
|
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"
|
|
|
|
[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.188", 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.108"
|
|
sc-rpc = { path = "../../../rpc", features = ["test-helpers"]}
|
|
substrate-test-runtime-client = { path = "../../../../test-utils/runtime/client" }
|
|
tokio = { version = "1.22.0", features = ["macros"] }
|