Cargo.toml 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. [package]
  2. name = 'pallet-storage'
  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. membership = { package = 'pallet-membership', default-features = false, path = '../membership'}
  15. pallet-timestamp = { package = 'pallet-timestamp', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = '2cd20966cc09b059817c3ebe12fc130cdd850d62'}
  16. working-group = { package = 'pallet-working-group', default-features = false, path = '../working-group'}
  17. common = { package = 'pallet-common', default-features = false, path = '../common'}
  18. [dev-dependencies]
  19. sp-io = { package = 'sp-io', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = '2cd20966cc09b059817c3ebe12fc130cdd850d62'}
  20. sp-core = { package = 'sp-core', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = '2cd20966cc09b059817c3ebe12fc130cdd850d62'}
  21. balances = { package = 'pallet-balances', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = '2cd20966cc09b059817c3ebe12fc130cdd850d62'}
  22. stake = { package = 'pallet-stake', default-features = false, path = '../stake'}
  23. hiring = { package = 'pallet-hiring', default-features = false, path = '../hiring'}
  24. minting = { package = 'pallet-token-mint', default-features = false, path = '../token-minting'}
  25. recurringrewards = { package = 'pallet-recurring-reward', default-features = false, path = '../recurring-reward'}
  26. [features]
  27. default = ['std']
  28. std = [
  29. 'serde',
  30. 'codec/std',
  31. 'sp-std/std',
  32. 'frame-support/std',
  33. 'frame-system/std',
  34. 'sp-arithmetic/std',
  35. 'sp-runtime/std',
  36. 'membership/std',
  37. 'pallet-timestamp/std',
  38. 'working-group/std',
  39. 'common/std',
  40. ]