mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-30 22:27:56 +00:00
ee084279c8
Bumps [scale-info](https://github.com/paritytech/scale-info) from 2.0.0 to 2.0.1. - [Release notes](https://github.com/paritytech/scale-info/releases) - [Changelog](https://github.com/paritytech/scale-info/blob/master/CHANGELOG.md) - [Commits](https://github.com/paritytech/scale-info/commits) --- updated-dependencies: - dependency-name: scale-info dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
43 lines
1.4 KiB
TOML
43 lines
1.4 KiB
TOML
[package]
|
|
name = "pallet-beefy"
|
|
version = "4.0.0-dev"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2021"
|
|
license = "Apache-2.0"
|
|
repository = "https://github.com/paritytech/substrate"
|
|
description = "BEEFY FRAME pallet"
|
|
|
|
[dependencies]
|
|
codec = { version = "3.0.0", package = "parity-scale-codec", default-features = false, features = ["derive"] }
|
|
scale-info = { version = "2.0.1", default-features = false, features = ["derive"] }
|
|
serde = { version = "1.0.136", optional = true }
|
|
|
|
frame-support = { version = "4.0.0-dev", path = "../support", default-features = false }
|
|
frame-system = { version = "4.0.0-dev", path = "../system", default-features = false }
|
|
|
|
sp-runtime = { version = "6.0.0", path = "../../primitives/runtime", default-features = false }
|
|
sp-std = { version = "4.0.0", path = "../../primitives/std", default-features = false }
|
|
|
|
pallet-session = { version = "4.0.0-dev", path = "../session", default-features = false }
|
|
|
|
beefy-primitives = { version = "4.0.0-dev", path = "../../primitives/beefy", default-features = false }
|
|
|
|
[dev-dependencies]
|
|
sp-core = { version = "6.0.0", path = "../../primitives/core" }
|
|
sp-io = { version = "6.0.0", path = "../../primitives/io" }
|
|
sp-staking = { version = "4.0.0-dev", path = "../../primitives/staking" }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"codec/std",
|
|
"scale-info/std",
|
|
"serde",
|
|
"beefy-primitives/std",
|
|
"frame-support/std",
|
|
"frame-system/std",
|
|
"sp-runtime/std",
|
|
"sp-std/std",
|
|
"pallet-session/std",
|
|
]
|