git.delta.rocks / unique-network / refs/commits / 4dff934f02cf

difftreelog

source

pallets/inflation/Cargo.toml2.5 KiBsourcehistory
1################################################################################2# Package34[package]5authors = ['Unique Network <support@uniquenetwork.io>']6description = 'Unique Inflation Pallet'7edition = '2021'8homepage = 'https://unique.network'9license = 'GPLv3'10name = 'pallet-inflation'11repository = 'https://github.com/UniqueNetwork/unique-chain'12version = "0.1.1"1314[package.metadata.docs.rs]15targets = ['x86_64-unknown-linux-gnu']1617[features]18default = ['std']19runtime-benchmarks = ['frame-benchmarking']20std = [21    'codec/std',22    'serde/std',23    'frame-support/std',24    'frame-system/std',25    'pallet-balances/std',26    'pallet-timestamp/std',27    'pallet-randomness-collective-flip/std',28    'sp-std/std',29    'sp-runtime/std',30    'frame-benchmarking/std',31]32try-runtime = ["frame-support/try-runtime"]3334################################################################################35# Substrate Dependencies3637[dependencies.codec]38default-features = false39features = ['derive']40package = 'parity-scale-codec'41version = '3.1.2'4243[dependencies.frame-benchmarking]44default-features = false45optional = true46git = "https://github.com/paritytech/substrate"47branch = "polkadot-v0.9.36"4849[dependencies.frame-support]50default-features = false51git = "https://github.com/paritytech/substrate"52branch = "polkadot-v0.9.36"5354[dependencies.frame-system]55default-features = false56git = "https://github.com/paritytech/substrate"57branch = "polkadot-v0.9.36"5859[dependencies.pallet-balances]60default-features = false61git = "https://github.com/paritytech/substrate"62branch = "polkadot-v0.9.36"6364[dependencies.pallet-timestamp]65default-features = false66git = "https://github.com/paritytech/substrate"67branch = "polkadot-v0.9.36"6869[dependencies.pallet-randomness-collective-flip]70default-features = false71git = "https://github.com/paritytech/substrate"72branch = "polkadot-v0.9.36"7374[dependencies.sp-std]75default-features = false76git = "https://github.com/paritytech/substrate"77branch = "polkadot-v0.9.36"7879[dependencies.serde]80default-features = false81features = ['derive']82version = '1.0.130'8384[dependencies.sp-runtime]85default-features = false86git = "https://github.com/paritytech/substrate"87branch = "polkadot-v0.9.36"8889[dependencies.sp-core]90default-features = false91git = "https://github.com/paritytech/substrate"92branch = "polkadot-v0.9.36"9394[dependencies.sp-io]95default-features = false96git = "https://github.com/paritytech/substrate"97branch = "polkadot-v0.9.36"9899[dependencies]100scale-info = { version = "2.0.1", default-features = false, features = [101    "derive",102] }