Cargo.toml 6.5 KB

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