Cargo.toml 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. [package]
  2. name = 'substrate-bureaucracy-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. 'codec/std',
  13. 'rstd/std',
  14. 'serde',
  15. 'hiring/std',
  16. 'stake/std'
  17. ]
  18. [dependencies]
  19. codec = { package = 'parity-scale-codec', version = '1.0.0', default-features = false, features = ['derive'] }
  20. primitives = { package = 'substrate-primitives', git = 'https://github.com/paritytech/substrate.git', rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'}
  21. rstd = { package = 'sr-std', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'}
  22. [dev-dependencies]
  23. runtime-io = { package = 'sr-io', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'}
  24. [dependencies.serde]
  25. features = ['derive']
  26. optional = true
  27. version = '1.0.101'
  28. [dependencies.sr-primitives]
  29. default_features = false
  30. git = 'https://github.com/paritytech/substrate.git'
  31. package = 'sr-primitives'
  32. rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'
  33. [dependencies.srml-support]
  34. default_features = false
  35. git = 'https://github.com/paritytech/substrate.git'
  36. package = 'srml-support'
  37. rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'
  38. [dependencies.system]
  39. default_features = false
  40. git = 'https://github.com/paritytech/substrate.git'
  41. package = 'srml-system'
  42. rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'
  43. [dependencies.hiring]
  44. default_features = false
  45. package = 'substrate-hiring-module'
  46. path = '../hiring'
  47. [dependencies.stake]
  48. default_features = false
  49. package = 'substrate-stake-module'
  50. path = '../stake'