Cargo.toml 1.1 KB

123456789101112131415161718192021222324
  1. [package]
  2. name = 'pallet-memo'
  3. version = '3.1.1'
  4. authors = ['Joystream contributors']
  5. edition = '2018'
  6. [dependencies]
  7. codec = { package = 'parity-scale-codec', version = '1.3.4', default-features = false, features = ['derive'] }
  8. sp-arithmetic = { package = 'sp-arithmetic', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = '2cd20966cc09b059817c3ebe12fc130cdd850d62'}
  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. common = { package = 'pallet-common', default-features = false, path = '../common'}
  13. [features]
  14. default = ['std']
  15. std = [
  16. 'codec/std',
  17. 'sp-arithmetic/std',
  18. 'sp-std/std',
  19. 'frame-support/std',
  20. 'frame-system/std',
  21. 'common/std',
  22. ]