1234567891011121314151617181920212223242526272829303132333435363738394041 |
- [package]
- name = 'pallet-council'
- version = '1.0.0'
- authors = ['Joystream contributors']
- edition = '2018'
- [dependencies]
- codec = { package = 'parity-scale-codec', version = '1.0.0', default-features = false, features = ['derive'] }
- serde = { version = '1.0.101', optional = true}
- sp-runtime = { package = 'sp-runtime', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = 'a200cdb93c6af5763b9c7bf313fa708764ac88ca'}
- sp-core = { package = 'sp-core', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = 'a200cdb93c6af5763b9c7bf313fa708764ac88ca'}
- sp-arithmetic = { package = 'sp-arithmetic', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = 'a200cdb93c6af5763b9c7bf313fa708764ac88ca'}
- frame-support = { package = 'frame-support', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = 'a200cdb93c6af5763b9c7bf313fa708764ac88ca'}
- frame-system = { package = 'frame-system', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = 'a200cdb93c6af5763b9c7bf313fa708764ac88ca'}
- referendum = { package = 'substrate-referendum-module', default-features = false, path = '../referendum'}
- staking-handler = { package = 'staking-handler', default-features = false, path = '../staking-handler'}
- [dev-dependencies]
- balances = { package = 'pallet-balances', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = 'a200cdb93c6af5763b9c7bf313fa708764ac88ca'}
- sp-io = { package = 'sp-io', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = 'a200cdb93c6af5763b9c7bf313fa708764ac88ca'}
- rand = "0.7.3"
- pallet-timestamp = { package = 'pallet-timestamp', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = 'a200cdb93c6af5763b9c7bf313fa708764ac88ca'}
- membership = { package = 'pallet-membership', default-features = false, path = '../membership'}
- [features]
- default = ['std']
- std = [
- 'codec/std',
- 'sp-core/std',
- 'sp-io/std',
- 'serde',
- 'sp-runtime/std',
- 'sp-arithmetic/std',
- 'frame-support/std',
- 'referendum/std',
- 'frame-system/std',
- 'staking-handler/std',
- ]
|