git.delta.rocks / unique-network / refs/commits / 8b49ab609aee

difftreelog

source

pallets/inflation/Cargo.toml1.1 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	'frame-benchmarking/std',22	'frame-support/std',23	'frame-system/std',24	'pallet-balances/std',25	'parity-scale-codec/std',26	'sp-runtime/std',27	'sp-std/std',28]29try-runtime = ["frame-support/try-runtime"]30fast-inflation = []3132[dependencies]33parity-scale-codec = { workspace = true }34scale-info = { workspace = true }3536frame-benchmarking = { workspace = true, optional = true }37frame-support = { workspace = true }38frame-system = { workspace = true }39pallet-balances = { features = ["insecure_zero_ed"], workspace = true }40sp-core = { workspace = true }41sp-io = { workspace = true }42sp-runtime = { workspace = true }43sp-std = { workspace = true }