mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-01 14:47:55 +00:00
68 lines
1.6 KiB
TOML
68 lines
1.6 KiB
TOML
[package]
|
|
name = "pallet-shift-session-manager"
|
|
description = "A Substrate Runtime module that selects 2/3 of initial validators for every session"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
|
|
|
[dependencies]
|
|
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false }
|
|
|
|
# Substrate Based Dependencies
|
|
|
|
[dependencies.frame-support]
|
|
version = "2.0.0-rc6"
|
|
tag = 'v2.0.0-rc6'
|
|
default-features = false
|
|
git = "https://github.com/paritytech/substrate/"
|
|
|
|
[dependencies.frame-system]
|
|
version = "2.0.0-rc6"
|
|
tag = 'v2.0.0-rc6'
|
|
default-features = false
|
|
git = "https://github.com/paritytech/substrate/"
|
|
|
|
[dependencies.pallet-session]
|
|
version = "2.0.0-rc6"
|
|
tag = 'v2.0.0-rc6'
|
|
default-features = false
|
|
git = "https://github.com/paritytech/substrate/"
|
|
|
|
[dependencies.sp-core]
|
|
version = "2.0.0-rc6"
|
|
tag = 'v2.0.0-rc6'
|
|
default-features = false
|
|
git = "https://github.com/paritytech/substrate/"
|
|
|
|
[dependencies.sp-runtime]
|
|
version = "2.0.0-rc6"
|
|
tag = 'v2.0.0-rc6'
|
|
default-features = false
|
|
git = "https://github.com/paritytech/substrate/"
|
|
|
|
[dependencies.sp-staking]
|
|
version = "2.0.0-rc6"
|
|
tag = 'v2.0.0-rc6'
|
|
default-features = false
|
|
git = "https://github.com/paritytech/substrate/"
|
|
|
|
[dependencies.sp-std]
|
|
version = "2.0.0-rc6"
|
|
tag = 'v2.0.0-rc6'
|
|
default-features = false
|
|
git = "https://github.com/paritytech/substrate/"
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"codec/std",
|
|
"frame-support/std",
|
|
"frame-system/std",
|
|
"pallet-session/std",
|
|
"sp-core/std",
|
|
"sp-runtime/std",
|
|
"sp-staking/std",
|
|
"sp-std/std",
|
|
]
|