Cargo.toml 7.7 KB

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