Cargo.toml 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. [package]
  2. name = 'substrate-content-working-group-module'
  3. version = '1.1.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. 'serde',
  13. 'codec/std',
  14. 'primitives/std',
  15. 'rstd/std',
  16. 'membership/std',
  17. 'forum/std',
  18. 'hiring/std',
  19. 'stake/std',
  20. 'minting/std',
  21. 'versioned_store/std',
  22. 'versioned_store_permissions/std',
  23. 'recurringrewards/std',
  24. 'common/std',
  25. ]
  26. [dependencies.sr-primitives]
  27. default_features = false
  28. git = 'https://github.com/paritytech/substrate.git'
  29. package = 'sr-primitives'
  30. rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'
  31. [dependencies.srml-support]
  32. default_features = false
  33. git = 'https://github.com/paritytech/substrate.git'
  34. package = 'srml-support'
  35. rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'
  36. [dependencies.system]
  37. default_features = false
  38. git = 'https://github.com/paritytech/substrate.git'
  39. package = 'srml-system'
  40. rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'
  41. [dependencies.rstd]
  42. default_features = false
  43. git = 'https://github.com/paritytech/substrate.git'
  44. package = 'sr-std'
  45. rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'
  46. [dependencies.serde]
  47. features = ['derive']
  48. optional = true
  49. version = '1.0.101'
  50. [dependencies.primitives]
  51. default_features = false
  52. git = 'https://github.com/paritytech/substrate.git'
  53. package = 'substrate-primitives'
  54. rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'
  55. [dependencies.codec]
  56. default-features = false
  57. features = ['derive']
  58. package = 'parity-scale-codec'
  59. version = '1.0.0'
  60. [dependencies.forum]
  61. default_features = false
  62. package = 'substrate-forum-module'
  63. path = '../forum'
  64. [dependencies.minting]
  65. default_features = false
  66. package = 'substrate-token-mint-module'
  67. path = '../token-minting'
  68. [dependencies.stake]
  69. default_features = false
  70. package = 'substrate-stake-module'
  71. path = '../stake'
  72. [dependencies.recurringrewards]
  73. default_features = false
  74. package = 'substrate-recurring-reward-module'
  75. path = '../recurring-reward'
  76. [dependencies.hiring]
  77. default_features = false
  78. package = 'substrate-hiring-module'
  79. path = '../hiring'
  80. [dependencies.versioned_store]
  81. default_features = false
  82. package ='substrate-versioned-store'
  83. path = '../versioned-store'
  84. [dependencies.versioned_store_permissions]
  85. default_features = false
  86. package = 'substrate-versioned-store-permissions-module'
  87. path = '../versioned-store-permissions'
  88. [dependencies.membership]
  89. default_features = false
  90. package = 'substrate-membership-module'
  91. path = '../membership'
  92. [dependencies.common]
  93. default_features = false
  94. package = 'substrate-common-module'
  95. path = '../common'
  96. [dev-dependencies.runtime-io]
  97. default_features = false
  98. git = 'https://github.com/paritytech/substrate.git'
  99. package = 'sr-io'
  100. rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'
  101. [dev-dependencies.balances]
  102. default_features = false
  103. git = 'https://github.com/paritytech/substrate.git'
  104. package = 'srml-balances'
  105. rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'
  106. [dev-dependencies.timestamp]
  107. default_features = false
  108. git = 'https://github.com/paritytech/substrate.git'
  109. package = 'srml-timestamp'
  110. rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'