mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-20 16:21:02 +00:00
32bd1c397b
* Use relative docify paths Bumping the docify version and using relative paths is needed for the monorepo to find the test files in the new workspace. Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * update docify to fix paths issue --------- Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> Co-authored-by: Sam Johnson <sam@durosoft.com>
85 lines
2.8 KiB
TOML
85 lines
2.8 KiB
TOML
[package]
|
|
name = "pallet-fast-unstake"
|
|
version = "4.0.0-dev"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2021"
|
|
license = "Apache-2.0"
|
|
homepage = "https://substrate.io"
|
|
repository = "https://github.com/paritytech/substrate/"
|
|
description = "FRAME fast unstake pallet"
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[dependencies]
|
|
codec = { package = "parity-scale-codec", version = "3.6.1", default-features = false }
|
|
log = { version = "0.4.17", default-features = false }
|
|
scale-info = { version = "2.5.0", default-features = false, features = ["derive"] }
|
|
|
|
frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" }
|
|
frame-system = { version = "4.0.0-dev", default-features = false, path = "../system" }
|
|
|
|
sp-io = { version = "23.0.0", default-features = false, path = "../../primitives/io" }
|
|
sp-runtime = { version = "24.0.0", default-features = false, path = "../../primitives/runtime" }
|
|
sp-std = { version = "8.0.0", default-features = false, path = "../../primitives/std" }
|
|
sp-staking = { default-features = false, path = "../../primitives/staking" }
|
|
frame-election-provider-support = { default-features = false, path = "../election-provider-support" }
|
|
|
|
frame-benchmarking = { version = "4.0.0-dev", default-features = false, optional = true, path = "../benchmarking" }
|
|
|
|
docify = "0.2.1"
|
|
|
|
[dev-dependencies]
|
|
pallet-staking-reward-curve = { version = "4.0.0-dev", path = "../staking/reward-curve" }
|
|
sp-core = { version = "21.0.0", default-features = false, path = "../../primitives/core" }
|
|
substrate-test-utils = { version = "4.0.0-dev", path = "../../test-utils" }
|
|
sp-tracing = { version = "10.0.0", path = "../../primitives/tracing" }
|
|
pallet-staking = { path = "../staking" }
|
|
pallet-balances = { path = "../balances" }
|
|
pallet-timestamp = { path = "../timestamp" }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"codec/std",
|
|
"log/std",
|
|
"scale-info/std",
|
|
|
|
"frame-support/std",
|
|
"frame-system/std",
|
|
|
|
"sp-io/std",
|
|
"sp-staking/std",
|
|
"sp-runtime/std",
|
|
"sp-std/std",
|
|
|
|
"frame-election-provider-support/std",
|
|
|
|
"frame-benchmarking/std",
|
|
"pallet-balances/std",
|
|
"pallet-staking/std",
|
|
"pallet-timestamp/std",
|
|
"sp-core/std",
|
|
"sp-tracing/std"
|
|
]
|
|
runtime-benchmarks = [
|
|
"frame-benchmarking/runtime-benchmarks",
|
|
"frame-system/runtime-benchmarks",
|
|
"sp-staking/runtime-benchmarks",
|
|
"frame-election-provider-support/runtime-benchmarks",
|
|
"frame-support/runtime-benchmarks",
|
|
"pallet-balances/runtime-benchmarks",
|
|
"pallet-staking/runtime-benchmarks",
|
|
"pallet-timestamp/runtime-benchmarks",
|
|
"sp-runtime/runtime-benchmarks"
|
|
]
|
|
try-runtime = [
|
|
"frame-support/try-runtime",
|
|
"frame-election-provider-support/try-runtime",
|
|
"frame-system/try-runtime",
|
|
"pallet-balances/try-runtime",
|
|
"pallet-staking/try-runtime",
|
|
"pallet-timestamp/try-runtime",
|
|
"sp-runtime/try-runtime"
|
|
]
|