12345678910111213141516171819202122232425262728293031323334353637383940 |
- [package]
- name = 'pallet-blog'
- version = '5.0.0'
- authors = ['Joystream contributors']
- edition = '2018'
- [dependencies]
- sp-std = { package = 'sp-std', 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'}
- codec = { package = 'parity-scale-codec', version = '1.0.0', default-features = false, features = ['derive'] }
- sp-arithmetic = { package = 'sp-arithmetic', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = '2cd20966cc09b059817c3ebe12fc130cdd850d62'}
- common = { package = 'pallet-common', default-features = false, path = '../common'}
- balances = { package = 'pallet-balances', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = '2cd20966cc09b059817c3ebe12fc130cdd850d62'}
- #Benchmark dependencies
- frame-benchmarking = { package = 'frame-benchmarking', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = '2cd20966cc09b059817c3ebe12fc130cdd850d62', optional = true}
- membership = { package = 'pallet-membership', default-features = false, path = '../membership', optional = true}
- [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'}
- membership = { package = 'pallet-membership', default-features = false, path = '../membership' }
- staking-handler = { package = 'pallet-staking-handler', default-features = false, path = '../staking-handler' }
- pallet-timestamp = { package = 'pallet-timestamp', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = '2cd20966cc09b059817c3ebe12fc130cdd850d62'}
- [features]
- default = ['std']
- runtime-benchmarks = ['frame-benchmarking', 'membership']
- std = [
- 'codec/std',
- 'sp-std/std',
- 'frame-support/std',
- 'sp-runtime/std',
- 'frame-system/std',
- 'common/std',
- 'sp-arithmetic/std',
- 'balances/std'
- ]
|