Cargo.toml 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266
  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. 'transaction-payment/std',
  41. 'node-primitives/std',
  42. 'randomness-collective-flip/std',
  43. 'system-rpc-runtime-api/std',
  44. 'forum/std',
  45. ]
  46. [dependencies.babe]
  47. default-features = false
  48. git = 'https://github.com/paritytech/substrate.git'
  49. package = 'srml-babe'
  50. rev = 'polkadot-master'
  51. [dependencies.babe-primitives]
  52. default-features = false
  53. git = 'https://github.com/paritytech/substrate.git'
  54. package = 'substrate-consensus-babe-primitives'
  55. rev = 'polkadot-master'
  56. [dependencies.balances]
  57. default_features = false
  58. git = 'https://github.com/paritytech/substrate.git'
  59. package = 'srml-balances'
  60. rev = 'polkadot-master'
  61. [dependencies.substrate-client]
  62. default_features = false
  63. git = 'https://github.com/paritytech/substrate.git'
  64. package = 'substrate-client'
  65. rev = 'polkadot-master'
  66. [dependencies.codec]
  67. default-features = false
  68. features = ['derive']
  69. package = 'parity-scale-codec'
  70. version = '1.0.0'
  71. [dependencies.executive]
  72. default_features = false
  73. git = 'https://github.com/paritytech/substrate.git'
  74. package = 'srml-executive'
  75. rev = 'polkadot-master'
  76. [dependencies.grandpa]
  77. default-features = false
  78. git = 'https://github.com/paritytech/substrate.git'
  79. package = 'srml-grandpa'
  80. rev = 'polkadot-master'
  81. [dependencies.indices]
  82. default_features = false
  83. git = 'https://github.com/paritytech/substrate.git'
  84. package = 'srml-indices'
  85. rev = 'polkadot-master'
  86. [dependencies.offchain-primitives]
  87. default-features = false
  88. git = 'https://github.com/paritytech/substrate.git'
  89. package = 'substrate-offchain-primitives'
  90. rev = 'polkadot-master'
  91. [dependencies.primitives]
  92. default_features = false
  93. git = 'https://github.com/paritytech/substrate.git'
  94. package = 'substrate-primitives'
  95. rev = 'polkadot-master'
  96. [dependencies.rstd]
  97. default_features = false
  98. git = 'https://github.com/paritytech/substrate.git'
  99. package = 'sr-std'
  100. rev = 'polkadot-master'
  101. [dependencies.runtime-io]
  102. default_features = false
  103. git = 'https://github.com/paritytech/substrate.git'
  104. package = 'sr-io'
  105. rev = 'polkadot-master'
  106. [dependencies.safe-mix]
  107. default-features = false
  108. version = '1.0'
  109. [dependencies.serde]
  110. features = ['derive']
  111. optional = true
  112. version = '1.0.101'
  113. [dependencies.runtime-primitives]
  114. default_features = false
  115. git = 'https://github.com/paritytech/substrate.git'
  116. package = 'sr-primitives'
  117. rev = 'polkadot-master'
  118. [dependencies.substrate-session]
  119. default-features = false
  120. git = 'https://github.com/paritytech/substrate.git'
  121. rev = 'polkadot-master'
  122. [dependencies.sudo]
  123. default_features = false
  124. git = 'https://github.com/paritytech/substrate.git'
  125. package = 'srml-sudo'
  126. rev = 'polkadot-master'
  127. [dependencies.srml-support]
  128. default_features = false
  129. git = 'https://github.com/paritytech/substrate.git'
  130. package = 'srml-support'
  131. rev = 'polkadot-master'
  132. [dependencies.system]
  133. default_features = false
  134. git = 'https://github.com/paritytech/substrate.git'
  135. package = 'srml-system'
  136. rev = 'polkadot-master'
  137. [dependencies.timestamp]
  138. default_features = false
  139. git = 'https://github.com/paritytech/substrate.git'
  140. package = 'srml-timestamp'
  141. rev = 'polkadot-master'
  142. [dependencies.version]
  143. default_features = false
  144. git = 'https://github.com/paritytech/substrate.git'
  145. package = 'sr-version'
  146. rev = 'polkadot-master'
  147. [dependencies.authority-discovery-primitives]
  148. default_features = false
  149. git = 'https://github.com/paritytech/substrate.git'
  150. package = 'substrate-authority-discovery-primitives'
  151. rev = 'polkadot-master'
  152. [dependencies.authority-discovery]
  153. default_features = false
  154. git = 'https://github.com/paritytech/substrate.git'
  155. package = 'srml-authority-discovery'
  156. rev = 'polkadot-master'
  157. [dependencies.authorship]
  158. default_features = false
  159. git = 'https://github.com/paritytech/substrate.git'
  160. package = 'srml-authorship'
  161. rev = 'polkadot-master'
  162. [dependencies.finality-tracker]
  163. default_features = false
  164. git = 'https://github.com/paritytech/substrate.git'
  165. package = 'srml-finality-tracker'
  166. rev = 'polkadot-master'
  167. [dependencies.im-online]
  168. default_features = false
  169. git = 'https://github.com/paritytech/substrate.git'
  170. package = 'srml-im-online'
  171. rev = 'polkadot-master'
  172. [dependencies.session]
  173. default_features = false
  174. git = 'https://github.com/paritytech/substrate.git'
  175. package = 'srml-session'
  176. rev = 'polkadot-master'
  177. [dependencies.offences]
  178. default_features = false
  179. git = 'https://github.com/paritytech/substrate.git'
  180. package = 'srml-offences'
  181. rev = 'polkadot-master'
  182. [dependencies.sr-staking-primitives]
  183. default_features = false
  184. git = 'https://github.com/paritytech/substrate.git'
  185. package = 'sr-staking-primitives'
  186. rev = 'polkadot-master'
  187. [dependencies.staking]
  188. default_features = false
  189. git = 'https://github.com/paritytech/substrate.git'
  190. package = 'srml-staking'
  191. rev = 'polkadot-master'
  192. [dependencies.node-primitives]
  193. default_features = false
  194. git = 'https://github.com/paritytech/substrate.git'
  195. package = 'node-primitives'
  196. rev = 'polkadot-master'
  197. [dependencies.transaction-payment]
  198. package = "srml-transaction-payment"
  199. git = 'https://github.com/paritytech/substrate.git'
  200. default_features = false
  201. rev = 'polkadot-master'
  202. [dependencies.randomness-collective-flip]
  203. package = "srml-randomness-collective-flip"
  204. git = 'https://github.com/paritytech/substrate.git'
  205. default_features = false
  206. rev = 'polkadot-master'
  207. [dependencies.system-rpc-runtime-api]
  208. package = "srml-system-rpc-runtime-api"
  209. git = 'https://github.com/paritytech/substrate.git'
  210. default_features = false
  211. rev = 'polkadot-master'
  212. # don't rename the dependency it is causing some strange compiler error:
  213. # https://github.com/rust-lang/rust/issues/64450
  214. [dependencies.srml-staking-reward-curve]
  215. package = 'srml-staking-reward-curve'
  216. git = 'https://github.com/paritytech/substrate.git'
  217. default_features = false
  218. rev = 'polkadot-master'
  219. [build-dependencies.wasm-builder-runner]
  220. package = 'substrate-wasm-builder-runner'
  221. version = '1.0.4'
  222. [dependencies.forum]
  223. default_features = false
  224. git = 'https://github.com/mnaamani/substrate-forum-module'
  225. package = 'substrate-forum-module'
  226. branch = 'use-polkadot-master-substrate-version'
  227. # Before releasing Rome - finalize and tag release new forum and update this
  228. # tag = 'v1.0.0'