Cargo.toml 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. [package]
  2. name = 'pallet-membership'
  3. version = '5.0.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. 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. balances = { package = 'pallet-balances', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = '2cd20966cc09b059817c3ebe12fc130cdd850d62'}
  16. common = { package = 'pallet-common', default-features = false, path = '../common'}
  17. staking-handler = { package = 'pallet-staking-handler', default-features = false, path = '../staking-handler'}
  18. # Benchmarking dependencies
  19. frame-benchmarking = { package = 'frame-benchmarking', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = '2cd20966cc09b059817c3ebe12fc130cdd850d62', optional = true}
  20. [dev-dependencies]
  21. sp-io = { package = 'sp-io', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = '2cd20966cc09b059817c3ebe12fc130cdd850d62'}
  22. sp-core = { package = 'sp-core', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = '2cd20966cc09b059817c3ebe12fc130cdd850d62'}
  23. working-group = { package = 'pallet-working-group', default-features = false, path = '../working-group'}
  24. [features]
  25. default = ['std']
  26. runtime-benchmarks = [
  27. 'frame-benchmarking',
  28. ]
  29. std = [
  30. 'serde',
  31. 'codec/std',
  32. 'frame-support/std',
  33. 'frame-system/std',
  34. 'sp-std/std',
  35. 'sp-arithmetic/std',
  36. 'sp-runtime/std',
  37. 'pallet-timestamp/std',
  38. 'balances/std',
  39. 'common/std',
  40. 'staking-handler/std',
  41. ]