1234567891011121314151617181920212223242526272829 |
- [package]
- name = 'pallet-recurring-reward'
- version = '3.1.1'
- authors = ['Joystream contributors']
- edition = '2018'
- [dependencies]
- codec = { package = 'parity-scale-codec', version = '1.3.4', default-features = false, features = ['derive'] }
- sp-arithmetic = { package = 'sp-arithmetic', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = '2cd20966cc09b059817c3ebe12fc130cdd850d62'}
- sp-runtime = { package = 'sp-runtime', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = '2cd20966cc09b059817c3ebe12fc130cdd850d62'}
- frame-support = { package = 'frame-support', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = '2cd20966cc09b059817c3ebe12fc130cdd850d62'}
- frame-system = { package = 'frame-system', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = '2cd20966cc09b059817c3ebe12fc130cdd850d62'}
- minting = { package = 'pallet-token-mint', default-features = false, path = '../token-minting'}
- [dev-dependencies]
- sp-io = { package = 'sp-io', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = '2cd20966cc09b059817c3ebe12fc130cdd850d62'}
- sp-core = { package = 'sp-core', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = '2cd20966cc09b059817c3ebe12fc130cdd850d62'}
- balances = { package = 'pallet-balances', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = '2cd20966cc09b059817c3ebe12fc130cdd850d62'}
- [features]
- default = ['std']
- std = [
- 'codec/std',
- 'sp-arithmetic/std',
- 'sp-runtime/std',
- 'frame-support/std',
- 'frame-system/std',
- 'minting/std',
- ]
|