Cargo.toml 2.4 KB

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