Cargo.toml 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. [package]
  2. name = 'pallet-council'
  3. version = '1.0.0'
  4. authors = ['Joystream contributors']
  5. edition = '2018'
  6. [dependencies]
  7. codec = { package = 'parity-scale-codec', version = '1.0.0', default-features = false, features = ['derive'] }
  8. serde = { version = '1.0.101', optional = true}
  9. sp-runtime = { package = 'sp-runtime', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = 'a200cdb93c6af5763b9c7bf313fa708764ac88ca'}
  10. sp-core = { package = 'sp-core', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = 'a200cdb93c6af5763b9c7bf313fa708764ac88ca'}
  11. sp-arithmetic = { package = 'sp-arithmetic', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = 'a200cdb93c6af5763b9c7bf313fa708764ac88ca'}
  12. frame-support = { package = 'frame-support', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = 'a200cdb93c6af5763b9c7bf313fa708764ac88ca'}
  13. frame-system = { package = 'frame-system', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = 'a200cdb93c6af5763b9c7bf313fa708764ac88ca'}
  14. referendum = { package = 'pallet-referendum', default-features = false, path = '../referendum'}
  15. staking-handler = { package = 'pallet-staking-handler', default-features = false, path = '../staking-handler'}
  16. [dev-dependencies]
  17. balances = { package = 'pallet-balances', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = 'a200cdb93c6af5763b9c7bf313fa708764ac88ca'}
  18. sp-io = { package = 'sp-io', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = 'a200cdb93c6af5763b9c7bf313fa708764ac88ca'}
  19. rand = "0.7.3"
  20. pallet-timestamp = { package = 'pallet-timestamp', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = 'a200cdb93c6af5763b9c7bf313fa708764ac88ca'}
  21. membership = { package = 'pallet-membership', default-features = false, path = '../membership'}
  22. [features]
  23. default = ['std']
  24. std = [
  25. 'codec/std',
  26. 'sp-core/std',
  27. 'sp-io/std',
  28. 'serde',
  29. 'sp-runtime/std',
  30. 'sp-arithmetic/std',
  31. 'frame-support/std',
  32. 'referendum/std',
  33. 'frame-system/std',
  34. 'staking-handler/std',
  35. ]