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

difftreelog

source

pallets/inflation/Cargo.toml2.6 KiBsourcehistory
1################################################################################2# Package34[package]5authors = ['Unique Network <support@uniquenetwork.io>']6description = 'Substrate node nft'7edition = '2018'8homepage = 'https://unique.network'9license = 'All Rights Reserved'10name = 'pallet-inflation'11repository = 'https://github.com/usetech-llc/nft_private/'12version = '3.0.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.0.0'4142[dependencies.frame-benchmarking]43default-features = false44optional = true45git = 'https://github.com/paritytech/substrate.git'46branch = 'polkadot-v0.9.3'47version = '3.0.0'4849[dependencies.frame-support]50default-features = false51git = 'https://github.com/paritytech/substrate.git'52branch = 'polkadot-v0.9.3'53version = '3.0.0'5455[dependencies.frame-system]56default-features = false57git = 'https://github.com/paritytech/substrate.git'58branch = 'polkadot-v0.9.3'59version = '3.0.0'6061[dependencies.pallet-balances]62default-features = false63git = 'https://github.com/paritytech/substrate.git'64branch = 'polkadot-v0.9.3'65version = '3.0.0'6667[dependencies.pallet-timestamp]68default-features = false69git = 'https://github.com/paritytech/substrate.git'70branch = 'polkadot-v0.9.3'71version = '3.0.0'7273[dependencies.pallet-randomness-collective-flip]74default-features = false75git = 'https://github.com/paritytech/substrate.git'76branch = 'polkadot-v0.9.3'77version = '3.0.0'7879[dependencies.sp-std]80default-features = false81git = 'https://github.com/paritytech/substrate.git'82branch = 'polkadot-v0.9.3'83version = '3.0.0'8485[dependencies.serde]86default-features = false87features = ['derive']88version = '1.0.119'8990[dependencies.sp-runtime]91default-features = false92git = 'https://github.com/paritytech/substrate.git'93branch = 'polkadot-v0.9.3'94version = '3.0.0'9596[dependencies.sp-core]97default-features = false98git = 'https://github.com/paritytech/substrate.git'99branch = 'polkadot-v0.9.3'100version = '3.0.0'101102[dependencies.sp-io]103default-features = false104git = 'https://github.com/paritytech/substrate.git'105branch = 'polkadot-v0.9.3'106version = '3.0.0'107