git.delta.rocks / unique-network / refs/commits / eebd5d8677d8

difftreelog

source

pallets/inflation/Cargo.toml2.5 KiBsourcehistory
1################################################################################2# Package34[package]5authors = ['Unique Network <support@uniquenetwork.io>']6description = 'Unique Inflation Pallet'7edition = '2018'8homepage = 'https://unique.network'9license = 'All Rights Reserved'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]3233################################################################################34# Substrate Dependencies3536[dependencies.codec]37default-features = false38features = ['derive']39package = 'parity-scale-codec'40version = '2.3.0'4142[dependencies.frame-benchmarking]43default-features = false44optional = true45git = 'https://github.com/paritytech/substrate.git'46branch = 'polkadot-v0.9.16'4748[dependencies.frame-support]49default-features = false50git = 'https://github.com/paritytech/substrate.git'51branch = 'polkadot-v0.9.16'5253[dependencies.frame-system]54default-features = false55git = 'https://github.com/paritytech/substrate.git'56branch = 'polkadot-v0.9.16'5758[dependencies.pallet-balances]59default-features = false60git = 'https://github.com/paritytech/substrate.git'61branch = 'polkadot-v0.9.16'6263[dependencies.pallet-timestamp]64default-features = false65git = 'https://github.com/paritytech/substrate.git'66branch = 'polkadot-v0.9.16'6768[dependencies.pallet-randomness-collective-flip]69default-features = false70git = 'https://github.com/paritytech/substrate.git'71branch = 'polkadot-v0.9.16'7273[dependencies.sp-std]74default-features = false75git = 'https://github.com/paritytech/substrate.git'76branch = 'polkadot-v0.9.16'7778[dependencies.serde]79default-features = false80features = ['derive']81version = '1.0.130'8283[dependencies.sp-runtime]84default-features = false85git = 'https://github.com/paritytech/substrate.git'86branch = 'polkadot-v0.9.16'8788[dependencies.sp-core]89default-features = false90git = 'https://github.com/paritytech/substrate.git'91branch = 'polkadot-v0.9.16'9293[dependencies.sp-io]94default-features = false95git = 'https://github.com/paritytech/substrate.git'96branch = 'polkadot-v0.9.16'9798[dependencies]99scale-info = { version = "1.0.0", default-features = false, features = ["derive"] }