Cargo.toml 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237
  1. [package]
  2. authors = ['Joystream']
  3. edition = '2018'
  4. name = 'joystream-node-runtime'
  5. version = '6.0.0'
  6. [features]
  7. default = ['std']
  8. no_std = []
  9. std = [
  10. 'authority-discovery-primitives/std',
  11. 'authority-discovery/std',
  12. 'authorship/std',
  13. 'finality-tracker/std',
  14. 'im-online/std',
  15. 'session/std',
  16. 'offences/std',
  17. 'sr-staking-primitives/std',
  18. 'staking/std',
  19. 'codec/std',
  20. 'substrate-client/std',
  21. 'rstd/std',
  22. 'runtime-io/std',
  23. 'srml-support/std',
  24. 'balances/std',
  25. 'babe/std',
  26. 'babe-primitives/std',
  27. 'executive/std',
  28. 'indices/std',
  29. 'grandpa/std',
  30. 'primitives/std',
  31. 'runtime-primitives/std',
  32. 'system/std',
  33. 'timestamp/std',
  34. 'sudo/std',
  35. 'version/std',
  36. 'serde',
  37. 'safe-mix/std',
  38. 'offchain-primitives/std',
  39. 'substrate-session/std',
  40. 'forum/std',
  41. 'node-primitives/std'
  42. ]
  43. [dependencies.babe]
  44. default-features = false
  45. git = 'https://github.com/paritytech/substrate.git'
  46. package = 'srml-babe'
  47. rev = 'a2a0eb5398d6223e531455b4c155ef053a4a3a2b'
  48. [dependencies.babe-primitives]
  49. default-features = false
  50. git = 'https://github.com/paritytech/substrate.git'
  51. package = 'substrate-consensus-babe-primitives'
  52. rev = 'a2a0eb5398d6223e531455b4c155ef053a4a3a2b'
  53. [dependencies.balances]
  54. default_features = false
  55. git = 'https://github.com/paritytech/substrate.git'
  56. package = 'srml-balances'
  57. rev = 'a2a0eb5398d6223e531455b4c155ef053a4a3a2b'
  58. [dependencies.substrate-client]
  59. default_features = false
  60. git = 'https://github.com/paritytech/substrate.git'
  61. package = 'substrate-client'
  62. rev = 'a2a0eb5398d6223e531455b4c155ef053a4a3a2b'
  63. [dependencies.codec]
  64. default-features = false
  65. features = ['derive']
  66. package = 'parity-scale-codec'
  67. version = '1.0.0'
  68. [dependencies.executive]
  69. default_features = false
  70. git = 'https://github.com/paritytech/substrate.git'
  71. package = 'srml-executive'
  72. rev = 'a2a0eb5398d6223e531455b4c155ef053a4a3a2b'
  73. [dependencies.grandpa]
  74. default-features = false
  75. git = 'https://github.com/paritytech/substrate.git'
  76. package = 'srml-grandpa'
  77. rev = 'a2a0eb5398d6223e531455b4c155ef053a4a3a2b'
  78. [dependencies.indices]
  79. default_features = false
  80. git = 'https://github.com/paritytech/substrate.git'
  81. package = 'srml-indices'
  82. rev = 'a2a0eb5398d6223e531455b4c155ef053a4a3a2b'
  83. [dependencies.offchain-primitives]
  84. default-features = false
  85. git = 'https://github.com/paritytech/substrate.git'
  86. package = 'substrate-offchain-primitives'
  87. rev = 'a2a0eb5398d6223e531455b4c155ef053a4a3a2b'
  88. [dependencies.primitives]
  89. default_features = false
  90. git = 'https://github.com/paritytech/substrate.git'
  91. package = 'substrate-primitives'
  92. rev = 'a2a0eb5398d6223e531455b4c155ef053a4a3a2b'
  93. [dependencies.rstd]
  94. default_features = false
  95. git = 'https://github.com/paritytech/substrate.git'
  96. package = 'sr-std'
  97. rev = 'a2a0eb5398d6223e531455b4c155ef053a4a3a2b'
  98. [dependencies.runtime-io]
  99. default_features = false
  100. git = 'https://github.com/paritytech/substrate.git'
  101. package = 'sr-io'
  102. rev = 'a2a0eb5398d6223e531455b4c155ef053a4a3a2b'
  103. [dependencies.safe-mix]
  104. default-features = false
  105. version = '1.0'
  106. [dependencies.serde]
  107. features = ['derive']
  108. optional = true
  109. version = '1.0'
  110. [dependencies.runtime-primitives]
  111. default_features = false
  112. git = 'https://github.com/paritytech/substrate.git'
  113. package = 'sr-primitives'
  114. rev = 'a2a0eb5398d6223e531455b4c155ef053a4a3a2b'
  115. [dependencies.substrate-session]
  116. default-features = false
  117. git = 'https://github.com/paritytech/substrate.git'
  118. rev = 'a2a0eb5398d6223e531455b4c155ef053a4a3a2b'
  119. [dependencies.sudo]
  120. default_features = false
  121. git = 'https://github.com/paritytech/substrate.git'
  122. package = 'srml-sudo'
  123. rev = 'a2a0eb5398d6223e531455b4c155ef053a4a3a2b'
  124. [dependencies.srml-support]
  125. default_features = false
  126. git = 'https://github.com/paritytech/substrate.git'
  127. package = 'srml-support'
  128. rev = 'a2a0eb5398d6223e531455b4c155ef053a4a3a2b'
  129. [dependencies.system]
  130. default_features = false
  131. git = 'https://github.com/paritytech/substrate.git'
  132. package = 'srml-system'
  133. rev = 'a2a0eb5398d6223e531455b4c155ef053a4a3a2b'
  134. [dependencies.timestamp]
  135. default_features = false
  136. git = 'https://github.com/paritytech/substrate.git'
  137. package = 'srml-timestamp'
  138. rev = 'a2a0eb5398d6223e531455b4c155ef053a4a3a2b'
  139. [dependencies.version]
  140. default_features = false
  141. git = 'https://github.com/paritytech/substrate.git'
  142. package = 'sr-version'
  143. rev = 'a2a0eb5398d6223e531455b4c155ef053a4a3a2b'
  144. [dependencies.authority-discovery-primitives]
  145. default_features = false
  146. git = 'https://github.com/paritytech/substrate.git'
  147. package = 'substrate-authority-discovery-primitives'
  148. rev = 'a2a0eb5398d6223e531455b4c155ef053a4a3a2b'
  149. [dependencies.authority-discovery]
  150. default_features = false
  151. git = 'https://github.com/paritytech/substrate.git'
  152. package = 'srml-authority-discovery'
  153. rev = 'a2a0eb5398d6223e531455b4c155ef053a4a3a2b'
  154. [dependencies.authorship]
  155. default_features = false
  156. git = 'https://github.com/paritytech/substrate.git'
  157. package = 'srml-authorship'
  158. rev = 'a2a0eb5398d6223e531455b4c155ef053a4a3a2b'
  159. [dependencies.finality-tracker]
  160. default_features = false
  161. git = 'https://github.com/paritytech/substrate.git'
  162. package = 'srml-finality-tracker'
  163. rev = 'a2a0eb5398d6223e531455b4c155ef053a4a3a2b'
  164. [dependencies.im-online]
  165. default_features = false
  166. git = 'https://github.com/paritytech/substrate.git'
  167. package = 'srml-im-online'
  168. rev = 'a2a0eb5398d6223e531455b4c155ef053a4a3a2b'
  169. [dependencies.session]
  170. default_features = false
  171. git = 'https://github.com/paritytech/substrate.git'
  172. package = 'srml-session'
  173. rev = 'a2a0eb5398d6223e531455b4c155ef053a4a3a2b'
  174. [dependencies.offences]
  175. default_features = false
  176. git = 'https://github.com/paritytech/substrate.git'
  177. package = 'srml-offences'
  178. rev = 'a2a0eb5398d6223e531455b4c155ef053a4a3a2b'
  179. [dependencies.sr-staking-primitives]
  180. default_features = false
  181. git = 'https://github.com/paritytech/substrate.git'
  182. package = 'sr-staking-primitives'
  183. rev = 'a2a0eb5398d6223e531455b4c155ef053a4a3a2b'
  184. [dependencies.staking]
  185. default_features = false
  186. git = 'https://github.com/paritytech/substrate.git'
  187. package = 'srml-staking'
  188. rev = 'a2a0eb5398d6223e531455b4c155ef053a4a3a2b'
  189. [dependencies.node-primitives]
  190. default_features = false
  191. git = 'https://github.com/paritytech/substrate.git'
  192. package = 'node-primitives'
  193. rev = 'a2a0eb5398d6223e531455b4c155ef053a4a3a2b'
  194. [build-dependencies.wasm-builder-runner]
  195. package = 'substrate-wasm-builder-runner'
  196. version = '1.0.2'
  197. [dependencies.forum]
  198. default_features = false
  199. git = 'https://github.com/mnaamani/substrate-forum-module'
  200. package = 'substrate-forum-module'
  201. branch = 'substrate-v2'
  202. # Before releasing Rome - finalize and tag release new forum and update this
  203. # tag = 'v1.0.0'