Cargo.toml 955 B

12345678910111213141516171819202122
  1. [package]
  2. name = 'pallet-memo'
  3. version = '3.0.0'
  4. authors = ['Joystream contributors']
  5. edition = '2018'
  6. [dependencies]
  7. codec = { package = 'parity-scale-codec', version = '1.3.1', default-features = false, features = ['derive'] }
  8. sp-arithmetic = { package = 'sp-arithmetic', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = '00768a1f21a579c478fe5d4f51e1fa71f7db9fd4'}
  9. frame-support = { package = 'frame-support', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = '00768a1f21a579c478fe5d4f51e1fa71f7db9fd4'}
  10. system = { package = 'frame-system', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = '00768a1f21a579c478fe5d4f51e1fa71f7db9fd4'}
  11. common = { package = 'pallet-common', default-features = false, path = '../common'}
  12. [features]
  13. default = ['std']
  14. std = [
  15. 'codec/std',
  16. 'sp-arithmetic/std',
  17. 'frame-support/std',
  18. 'system/std',
  19. 'common/std',
  20. ]