mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-19 14:41:02 +00:00
3938c1cb62
* Bump sp-storage * Bump sp-rpc * Bump sp-io * Bump sp-trie * Bump sp-state-machine * Bump sp-externalities * Bump sp-keystore * Bump sp-application-crypto * Bump pallet-contracts-primitives * Bump sp-core * Bump sp-runtime-interface * Bump sp-wasm-interface * Bump sp-runtime * Bump sp-storage * Update lock file * Revert "Bump sp-storage" This reverts commit f86c6db1ae334e28207b658fd90714ade0332e3b. * Update lock file
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 = "2.2.0", package = "parity-scale-codec", default-features = false, features = ["derive"] }
|
|
scale-info = { version = "1.0", default-features = false, features = ["derive"] }
|
|
serde = { version = "1.0.132", 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 = "5.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 = "5.0.0", path = "../../primitives/core" }
|
|
sp-io = { version = "5.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",
|
|
]
|