123456789101112131415161718192021222324252627282930313233343536373839 |
- [package]
- name = 'pallet-service-discovery'
- version = '4.0.0'
- authors = ['Joystream contributors']
- edition = '2018'
- [dependencies]
- serde = { version = "1.0.101", optional = true, features = ["derive"] }
- codec = { package = 'parity-scale-codec', version = '1.3.4', default-features = false, features = ['derive'] }
- sp-std = { package = 'sp-std', 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'}
- sp-runtime = { package = 'sp-runtime', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = 'a200cdb93c6af5763b9c7bf313fa708764ac88ca'}
- working-group = { package = 'pallet-working-group', default-features = false, path = '../working-group'}
- [dev-dependencies]
- sp-io = { package = 'sp-io', 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'}
- pallet-timestamp = { package = 'pallet-timestamp', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = 'a200cdb93c6af5763b9c7bf313fa708764ac88ca'}
- balances = { package = 'pallet-balances', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = 'a200cdb93c6af5763b9c7bf313fa708764ac88ca'}
- membership = { package = 'pallet-membership', default-features = false, path = '../membership'}
- minting = { package = 'pallet-token-mint', default-features = false, path = '../token-minting'}
- recurringrewards = { package = 'pallet-recurring-reward', default-features = false, path = '../recurring-reward'}
- common = { package = 'pallet-common', default-features = false, path = '../common'}
- staking-handler = { package = 'pallet-staking-handler', default-features = false, path = '../staking-handler'}
- [features]
- default = ['std']
- std = [
- 'serde',
- 'codec/std',
- 'sp-std/std',
- 'sp-arithmetic/std',
- 'frame-support/std',
- 'frame-system/std',
- 'sp-runtime/std',
- 'working-group/std',
- ]
|