mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-07 03:48:01 +00:00
2b8af8cb1a
* chore(release): sp-core v7.0.0 * chore(release): sp-runtime v7.0.0 * fix bad merge
33 lines
1.3 KiB
TOML
33 lines
1.3 KiB
TOML
[package]
|
|
name = "beefy-gadget-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.0.0", features = ["derive"] }
|
|
futures = "0.3.21"
|
|
jsonrpsee = { version = "0.15.1", features = ["server", "macros"] }
|
|
log = "0.4"
|
|
parking_lot = "0.12.1"
|
|
serde = { version = "1.0.136", features = ["derive"] }
|
|
thiserror = "1.0"
|
|
beefy-gadget = { version = "4.0.0-dev", path = "../." }
|
|
beefy-primitives = { version = "4.0.0-dev", path = "../../../primitives/beefy" }
|
|
sc-rpc = { version = "4.0.0-dev", path = "../../rpc" }
|
|
sc-utils = { version = "4.0.0-dev", path = "../../utils" }
|
|
sp-core = { version = "7.0.0", path = "../../../primitives/core" }
|
|
sp-runtime = { version = "7.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.17.0", features = ["macros"] }
|