mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-07-01 21:47:25 +00:00
8db7ec9cc9
* all reverences of substrate.dev replaced with *correct* docs.substrate.io links * fix links in non-cargo files, errors in replace * homepage https://substrate.io * cargo +nightly fmt * FMT Co-authored-by: Bastian Köcher <info@kchr.de>
27 lines
1.0 KiB
TOML
27 lines
1.0 KiB
TOML
[package]
|
|
name = "generate-bags"
|
|
version = "3.0.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
license = "Apache-2.0"
|
|
homepage = "https://substrate.io"
|
|
repository = "https://github.com/paritytech/substrate/"
|
|
description = "Bag threshold generation script for pallet-bag-list"
|
|
readme = "README.md"
|
|
|
|
[dependencies]
|
|
# FRAME
|
|
frame-support = { version = "4.0.0-dev", default-features = false, path = "../../../frame/support" }
|
|
frame-election-provider-support = { version = "4.0.0-dev", path = "../../../frame/election-provider-support", features = ["runtime-benchmarks"] }
|
|
frame-system = { version = "4.0.0-dev", default-features = false, path = "../../../frame/system" }
|
|
pallet-staking = { version = "4.0.0-dev", default-features = false, path = "../../../frame/staking" }
|
|
|
|
# primitives
|
|
sp-io = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/io" }
|
|
|
|
# third party
|
|
chrono = { version = "0.4.19" }
|
|
git2 = { version = "0.13.20", default-features = false }
|
|
num-format = { version = "0.4.0" }
|
|
structopt = "0.3.21"
|