1234[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.0'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]3233343536[dependencies.codec]37default-features = false38features = ['derive']39package = 'parity-scale-codec'40version = '3.1.2'4142[dependencies.frame-benchmarking]43default-features = false44optional = true45git = "https://github.com/paritytech/substrate"46branch = "polkadot-v0.9.20"4748[dependencies.frame-support]49default-features = false50git = "https://github.com/paritytech/substrate"51branch = "polkadot-v0.9.20"5253[dependencies.frame-system]54default-features = false55git = "https://github.com/paritytech/substrate"56branch = "polkadot-v0.9.20"5758[dependencies.pallet-balances]59default-features = false60git = "https://github.com/paritytech/substrate"61branch = "polkadot-v0.9.20"6263[dependencies.pallet-timestamp]64default-features = false65git = "https://github.com/paritytech/substrate"66branch = "polkadot-v0.9.20"6768[dependencies.pallet-randomness-collective-flip]69default-features = false70git = "https://github.com/paritytech/substrate"71branch = "polkadot-v0.9.20"7273[dependencies.sp-std]74default-features = false75git = "https://github.com/paritytech/substrate"76branch = "polkadot-v0.9.20"7778[dependencies.serde]79default-features = false80features = ['derive']81version = '1.0.130'8283[dependencies.sp-runtime]84default-features = false85git = "https://github.com/paritytech/substrate"86branch = "polkadot-v0.9.20"8788[dependencies.sp-core]89default-features = false90git = "https://github.com/paritytech/substrate"91branch = "polkadot-v0.9.20"9293[dependencies.sp-io]94default-features = false95git = "https://github.com/paritytech/substrate"96branch = "polkadot-v0.9.20"9798[dependencies]99scale-info = { version = "2.0.1", default-features = false, features = [100 "derive",101] }