Cargo.toml 3.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. [package]
  2. name = 'pallet-proposals-codex'
  3. version = '3.2.0'
  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. sp-arithmetic = { package = 'sp-arithmetic', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = '2cd20966cc09b059817c3ebe12fc130cdd850d62'}
  12. sp-runtime = { package = 'sp-runtime', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = '2cd20966cc09b059817c3ebe12fc130cdd850d62'}
  13. frame-system = { package = 'frame-system', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = '2cd20966cc09b059817c3ebe12fc130cdd850d62'}
  14. staking = { package = 'pallet-staking', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = '2cd20966cc09b059817c3ebe12fc130cdd850d62'}
  15. pallet-timestamp = { package = 'pallet-timestamp', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = '2cd20966cc09b059817c3ebe12fc130cdd850d62'}
  16. balances = { package = 'pallet-balances', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = '2cd20966cc09b059817c3ebe12fc130cdd850d62'}
  17. membership = { package = 'pallet-membership', default-features = false, path = '../../membership'}
  18. stake = { package = 'pallet-stake', default-features = false, path = '../../stake'}
  19. governance = { package = 'pallet-governance', default-features = false, path = '../../governance'}
  20. hiring = { package = 'pallet-hiring', default-features = false, path = '../../hiring'}
  21. minting = { package = 'pallet-token-mint', default-features = false, path = '../../token-minting'}
  22. working-group = { package = 'pallet-working-group', default-features = false, path = '../../working-group'}
  23. common = { package = 'pallet-common', default-features = false, path = '../../common'}
  24. proposals-engine = { package = 'pallet-proposals-engine', default-features = false, path = '../engine'}
  25. proposals-discussion = { package = 'pallet-proposals-discussion', default-features = false, path = '../discussion'}
  26. [dev-dependencies]
  27. sp-io = { package = 'sp-io', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = '2cd20966cc09b059817c3ebe12fc130cdd850d62'}
  28. sp-core = { package = 'sp-core', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = '2cd20966cc09b059817c3ebe12fc130cdd850d62'}
  29. sp-staking = { package = 'sp-staking', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = '2cd20966cc09b059817c3ebe12fc130cdd850d62'}
  30. pallet-staking-reward-curve = { package = 'pallet-staking-reward-curve', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = '2cd20966cc09b059817c3ebe12fc130cdd850d62'}
  31. recurring-rewards = { package = 'pallet-recurring-reward', default-features = false, path = '../../recurring-reward'}
  32. strum = {version = "0.19", default-features = false}
  33. [features]
  34. default = ['std']
  35. std = [
  36. 'serde',
  37. 'codec/std',
  38. 'sp-std/std',
  39. 'frame-support/std',
  40. 'sp-arithmetic/std',
  41. 'sp-runtime/std',
  42. 'frame-system/std',
  43. 'staking/std',
  44. 'pallet-timestamp/std',
  45. 'balances/std',
  46. 'membership/std',
  47. 'stake/std',
  48. 'governance/std',
  49. 'hiring/std',
  50. 'minting/std',
  51. 'working-group/std',
  52. 'common/std',
  53. 'proposals-engine/std',
  54. 'proposals-discussion/std',
  55. ]