mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 16:57:58 +00:00
29244ba76d
* Add header-chain primitive crate * Make MinimalHeaderChain functionaly the same as PeerBlockchain * Use a better doc comment for MinimalHeaderChain * Fix benchmark compilation * Rust Fmt * Remove Substrate based dependencies * Rename MinimalHeaderChain to BaseHeaderChain
19 lines
440 B
TOML
19 lines
440 B
TOML
[package]
|
|
name = "bp-header-chain"
|
|
description = "A common interface for describing what a bridge pallet should be able to do."
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
|
|
|
[dependencies.parity-scale-codec]
|
|
version = "1.3.1"
|
|
default-features = false
|
|
features = ["derive"]
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"parity-scale-codec/std",
|
|
]
|