mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 16:57:58 +00:00
14bb115193
* Scale trait and move to u32 blocknumbers. * Fixes * Cleanups * Update node/runtime/src/lib.rs Co-Authored-By: Bastian Köcher <bkchr@users.noreply.github.com> * Fix up some of the factory stuff. * Update core/sr-primitives/src/traits.rs Co-Authored-By: Shawn Tabrizi <shawntabrizi@gmail.com> * Move Nonce/Index to u32 (#3361) * Force a non-borked version of upstream crate * Line lengths and runtime version bump
21 lines
905 B
TOML
21 lines
905 B
TOML
[package]
|
|
name = "substrate-basic-authorship"
|
|
version = "2.0.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
log = "0.4"
|
|
futures-preview = "=0.3.0-alpha.17"
|
|
codec = { package = "parity-scale-codec", version = "1.0.0" }
|
|
sr-primitives = { path = "../../core/sr-primitives" }
|
|
primitives = { package = "substrate-primitives", path = "../../core/primitives" }
|
|
client = { package = "substrate-client", path = "../../core/client" }
|
|
consensus_common = { package = "substrate-consensus-common", path = "../../core/consensus/common" }
|
|
inherents = { package = "substrate-inherents", path = "../inherents" }
|
|
substrate-telemetry = { path = "../telemetry" }
|
|
transaction_pool = { package = "substrate-transaction-pool", path = "../../core/transaction-pool" }
|
|
|
|
[dev-dependencies]
|
|
test-client = { package = "substrate-test-runtime-client", path = "../../core/test-runtime/client" }
|