mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-19 18:11:03 +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
58 lines
2.3 KiB
TOML
58 lines
2.3 KiB
TOML
[package]
|
|
name = "pallet-beefy-mmr"
|
|
version = "4.0.0-dev"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2021"
|
|
license = "Apache-2.0"
|
|
description = "BEEFY + MMR runtime utilities"
|
|
repository = "https://github.com/paritytech/substrate"
|
|
|
|
[dependencies]
|
|
hex = { version = "0.4", optional = true }
|
|
codec = { version = "2.2.0", package = "parity-scale-codec", default-features = false, features = ["derive"] }
|
|
libsecp256k1 = { version = "0.7.0", default-features = false }
|
|
log = { version = "0.4.13", default-features = false }
|
|
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 }
|
|
pallet-mmr = { version = "4.0.0-dev", path = "../merkle-mountain-range", default-features = false }
|
|
pallet-mmr-primitives = { version = "4.0.0-dev", path = "../merkle-mountain-range/primitives", default-features = false }
|
|
pallet-session = { version = "4.0.0-dev", path = "../session", default-features = false }
|
|
|
|
sp-core = { version = "5.0.0", path = "../../primitives/core", default-features = false }
|
|
sp-io = { version = "5.0.0", path = "../../primitives/io", 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 }
|
|
|
|
beefy-merkle-tree = { version = "4.0.0-dev", path = "./primitives", default-features = false }
|
|
beefy-primitives = { version = "4.0.0-dev", path = "../../primitives/beefy", default-features = false }
|
|
pallet-beefy = { version = "4.0.0-dev", path = "../beefy", default-features = false }
|
|
|
|
[dev-dependencies]
|
|
sp-staking = { version = "4.0.0-dev", path = "../../primitives/staking" }
|
|
hex-literal = "0.3"
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"beefy-merkle-tree/std",
|
|
"beefy-primitives/std",
|
|
"codec/std",
|
|
"frame-support/std",
|
|
"frame-system/std",
|
|
"hex",
|
|
"libsecp256k1/std",
|
|
"log/std",
|
|
"pallet-beefy/std",
|
|
"pallet-mmr-primitives/std",
|
|
"pallet-mmr/std",
|
|
"pallet-session/std",
|
|
"serde",
|
|
"sp-core/std",
|
|
"sp-io/std",
|
|
"sp-runtime/std",
|
|
"sp-std/std",
|
|
]
|