Cargo.toml 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. [package]
  2. name = 'substrate-memo-module'
  3. version = '1.0.0'
  4. authors = ['Joystream contributors']
  5. edition = '2018'
  6. [features]
  7. default = ['std']
  8. std = [
  9. 'sr-primitives/std',
  10. 'srml-support/std',
  11. 'system/std',
  12. 'rstd/std',
  13. 'common/std',
  14. ]
  15. [dependencies.sr-primitives]
  16. default_features = false
  17. git = 'https://github.com/paritytech/substrate.git'
  18. package = 'sr-primitives'
  19. rev = '0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3'
  20. [dependencies.srml-support]
  21. default_features = false
  22. git = 'https://github.com/paritytech/substrate.git'
  23. package = 'srml-support'
  24. rev = '0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3'
  25. [dependencies.system]
  26. default_features = false
  27. git = 'https://github.com/paritytech/substrate.git'
  28. package = 'srml-system'
  29. rev = '0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3'
  30. [dependencies.rstd]
  31. default_features = false
  32. git = 'https://github.com/paritytech/substrate.git'
  33. package = 'sr-std'
  34. rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'
  35. [dependencies.common]
  36. default_features = false
  37. package = 'substrate-common-module'
  38. path = 'runtime-modules/common'