Cargo.toml 1.1 KB

123456789101112131415161718192021222324
  1. [package]
  2. name = 'pallet-memo'
  3. version = '3.1.0'
  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 = 'a200cdb93c6af5763b9c7bf313fa708764ac88ca'}
  9. sp-std = { package = 'sp-std', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = 'a200cdb93c6af5763b9c7bf313fa708764ac88ca'}
  10. frame-support = { package = 'frame-support', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = 'a200cdb93c6af5763b9c7bf313fa708764ac88ca'}
  11. frame-system = { package = 'frame-system', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = 'a200cdb93c6af5763b9c7bf313fa708764ac88ca'}
  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. ]