mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 20:27:58 +00:00
8a0e8ea9a6
* Start * Finish!!!! * Update client/basic-authorship/src/basic_authorship.rs Co-authored-by: André Silva <123550+andresilva@users.noreply.github.com> * Review comments Co-authored-by: André Silva <123550+andresilva@users.noreply.github.com>
30 lines
1.2 KiB
TOML
30 lines
1.2 KiB
TOML
[package]
|
|
name = "sc-block-builder"
|
|
version = "0.9.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
|
homepage = "https://substrate.dev"
|
|
repository = "https://github.com/paritytech/substrate/"
|
|
description = "Substrate block builder"
|
|
readme = "README.md"
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
|
|
[dependencies]
|
|
sp-state-machine = { version = "0.9.0", path = "../../primitives/state-machine" }
|
|
sp-runtime = { version = "3.0.0", path = "../../primitives/runtime" }
|
|
sp-api = { version = "3.0.0", path = "../../primitives/api" }
|
|
sp-blockchain = { version = "3.0.0", path = "../../primitives/blockchain" }
|
|
sp-core = { version = "3.0.0", path = "../../primitives/core" }
|
|
sp-block-builder = { version = "3.0.0", path = "../../primitives/block-builder" }
|
|
sp-inherents = { version = "3.0.0", path = "../../primitives/inherents" }
|
|
sc-client-api = { version = "3.0.0", path = "../api" }
|
|
codec = { package = "parity-scale-codec", version = "2.0.0", features = ["derive"] }
|
|
|
|
[dev-dependencies]
|
|
substrate-test-runtime-client = { path = "../../test-utils/runtime/client" }
|
|
sp-trie = { version = "3.0.0", path = "../../primitives/trie" }
|