Cargo.toml 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. [package]
  2. name = 'pallet-utility'
  3. version = '1.1.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.1', 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-runtime = { package = 'sp-runtime', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = '2cd20966cc09b059817c3ebe12fc130cdd850d62'}
  13. council = { package = 'pallet-council', default-features = false, path = '../council'}
  14. common = { package = 'pallet-common', default-features = false, path = '../common'}
  15. balances = { package = 'pallet-balances', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = '2cd20966cc09b059817c3ebe12fc130cdd850d62'}
  16. sp-arithmetic = { package = 'sp-arithmetic', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = '2cd20966cc09b059817c3ebe12fc130cdd850d62'}
  17. # Benchmarking dependencies
  18. frame-benchmarking = { package = 'frame-benchmarking', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = '2cd20966cc09b059817c3ebe12fc130cdd850d62', optional = true}
  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. working-group = { package = 'pallet-working-group', default-features = false, path = '../working-group'}
  23. staking-handler = { package = 'pallet-staking-handler', default-features = false, path = '../staking-handler'}
  24. referendum = { package = 'pallet-referendum', default-features = false, path = '../referendum'}
  25. membership = { package = 'pallet-membership', default-features = false, path = '../membership'}
  26. pallet-timestamp = { package = 'pallet-timestamp', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = '2cd20966cc09b059817c3ebe12fc130cdd850d62'}
  27. strum = {version = "0.19", default-features = false}
  28. [features]
  29. default = ['std']
  30. runtime-benchmarks = ["frame-benchmarking"]
  31. std = [
  32. 'serde',
  33. 'codec/std',
  34. 'sp-std/std',
  35. 'frame-support/std',
  36. 'frame_system/std',
  37. 'sp-runtime/std',
  38. 'common/std',
  39. 'council/std',
  40. 'balances/std',
  41. 'sp-arithmetic/std',
  42. ]