mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-27 12:48:00 +00:00
b70da7bff7
* guide: ChainApiMessage::BlockWeight * node: BlockWeight ChainAPI * fix compile issue * implement ChainApi::BlockWeight * add test for ChainApi::BlockWeight * update substrate Co-authored-by: André Silva <andrerfosilva@gmail.com>
24 lines
1007 B
TOML
24 lines
1007 B
TOML
[package]
|
|
name = "polkadot-node-core-chain-api"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
futures = "0.3.15"
|
|
tracing = "0.1.26"
|
|
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
polkadot-primitives = { path = "../../../primitives" }
|
|
polkadot-subsystem = { package = "polkadot-node-subsystem", path = "../../subsystem" }
|
|
polkadot-node-subsystem-util = { path = "../../subsystem-util" }
|
|
sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
|
|
[dev-dependencies]
|
|
futures = { version = "0.3.15", features = ["thread-pool"] }
|
|
maplit = "1.0.2"
|
|
parity-scale-codec = "2.0.0"
|
|
polkadot-node-primitives = { path = "../../primitives" }
|
|
polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" }
|
|
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
|