mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-25 21:07:56 +00:00
8e14f3f9af
Bumps [finality-grandpa](https://github.com/paritytech/finality-grandpa) from 0.16.1 to 0.16.2. - [Release notes](https://github.com/paritytech/finality-grandpa/releases) - [Commits](https://github.com/paritytech/finality-grandpa/compare/v0.16.1...v0.16.2) --- updated-dependencies: - dependency-name: finality-grandpa dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
30 lines
1.2 KiB
TOML
30 lines
1.2 KiB
TOML
[package]
|
|
name = "bp-test-utils"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2021"
|
|
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
|
|
|
[dependencies]
|
|
bp-header-chain = { path = "../header-chain", default-features = false }
|
|
codec = { package = "parity-scale-codec", version = "3.1.5", default-features = false }
|
|
ed25519-dalek = { version = "1.0", default-features = false, features = ["u64_backend"] }
|
|
finality-grandpa = { version = "0.16.2", default-features = false }
|
|
sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
|
sp-consensus-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
|
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
|
sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"bp-header-chain/std",
|
|
"codec/std",
|
|
"ed25519-dalek/std",
|
|
"finality-grandpa/std",
|
|
"sp-application-crypto/std",
|
|
"sp-consensus-grandpa/std",
|
|
"sp-runtime/std",
|
|
"sp-std/std",
|
|
]
|