123456789101112131415161718192021222324252627282930313233343536373839404142 |
- [package]
- name = 'pallet-content'
- version = '3.2.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'}
- sp-arithmetic = { package = 'sp-arithmetic', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = '2cd20966cc09b059817c3ebe12fc130cdd850d62'}
- codec = { package = 'parity-scale-codec', version = '1.3.4', default-features = false, features = ['derive'] }
- serde = {version = '1.0.101', features = ['derive'], optional = true}
- common = { package = 'pallet-common', default-features = false, path = '../common'}
- storage = { package = 'pallet-storage', default-features = false, path = '../storage'}
- membership = { package = 'pallet-membership', default-features = false, path = '../membership'}
- balances = { package = 'pallet-balances', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = '2cd20966cc09b059817c3ebe12fc130cdd850d62'}
- [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'}
- pallet-timestamp = { package = 'pallet-timestamp', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = '2cd20966cc09b059817c3ebe12fc130cdd850d62'}
- randomness-collective-flip = { package = 'pallet-randomness-collective-flip', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = '2cd20966cc09b059817c3ebe12fc130cdd850d62'}
- [features]
- default = ['std']
- std = [
- 'sp-std/std',
- 'sp-runtime/std',
- 'frame-support/std',
- 'frame-system/std',
- 'sp-arithmetic/std',
- 'codec/std',
- 'serde',
- 'common/std',
- 'storage/std',
- 'balances/std',
- 'membership/std',
- ]
|