git.delta.rocks / unique-network / refs/commits / 5ef5e6b4aa6d

difftreelog

source

pallets/inflation/Cargo.toml1.2 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	'frame-benchmarking/std',23	'frame-support/std',24	'frame-system/std',25	'pallet-balances/std',26	'sp-runtime/std',27	'sp-std/std',28]29try-runtime = ["frame-support/try-runtime"]3031[dependencies]32# Note: `package = "parity-scale-codec"` must be supplied since the `Encode` macro searches for it.33codec = { workspace = true, package = "parity-scale-codec" }3435scale-info = { workspace = true }3637frame-benchmarking = { workspace = true, optional = true }38frame-support = { workspace = true }39frame-system = { workspace = true }40pallet-balances = { features = ["insecure_zero_ed"], workspace = true }41sp-core = { workspace = true }42sp-io = { workspace = true }43sp-runtime = { workspace = true }44sp-std = { workspace = true }