Cargo.toml 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301
  1. [package]
  2. authors = ['Joystream']
  3. edition = '2018'
  4. name = 'joystream-node-runtime'
  5. # Follow convention: https://github.com/Joystream/substrate-runtime-joystream/issues/1
  6. # {Authoring}.{Spec}.{Impl} of the RuntimeVersion
  7. version = '6.0.0'
  8. [features]
  9. default = ['std']
  10. no_std = []
  11. std = [
  12. 'authority-discovery-primitives/std',
  13. 'authority-discovery/std',
  14. 'authorship/std',
  15. 'finality-tracker/std',
  16. 'im-online/std',
  17. 'session/std',
  18. 'offences/std',
  19. 'sr-staking-primitives/std',
  20. 'staking/std',
  21. 'codec/std',
  22. 'substrate-client/std',
  23. 'rstd/std',
  24. 'runtime-io/std',
  25. 'srml-support/std',
  26. 'balances/std',
  27. 'babe/std',
  28. 'babe-primitives/std',
  29. 'executive/std',
  30. 'indices/std',
  31. 'grandpa/std',
  32. 'primitives/std',
  33. 'runtime-primitives/std',
  34. 'system/std',
  35. 'timestamp/std',
  36. 'sudo/std',
  37. 'version/std',
  38. 'serde',
  39. 'safe-mix/std',
  40. 'offchain-primitives/std',
  41. 'substrate-session/std',
  42. 'transaction-payment/std',
  43. 'randomness-collective-flip/std',
  44. 'system-rpc-runtime-api/std',
  45. 'forum/std',
  46. 'minting/std',
  47. 'recurringrewards/std',
  48. 'stake/std',
  49. 'hiring/std',
  50. 'versioned_store/std',
  51. 'versioned_store_permissions/std'
  52. ]
  53. [dependencies.babe]
  54. default-features = false
  55. git = 'https://github.com/paritytech/substrate.git'
  56. package = 'srml-babe'
  57. rev = '0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3'
  58. [dependencies.babe-primitives]
  59. default-features = false
  60. git = 'https://github.com/paritytech/substrate.git'
  61. package = 'substrate-consensus-babe-primitives'
  62. rev = '0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3'
  63. [dependencies.balances]
  64. default_features = false
  65. git = 'https://github.com/paritytech/substrate.git'
  66. package = 'srml-balances'
  67. rev = '0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3'
  68. [dependencies.substrate-client]
  69. default_features = false
  70. git = 'https://github.com/paritytech/substrate.git'
  71. package = 'substrate-client'
  72. rev = '0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3'
  73. [dependencies.codec]
  74. default-features = false
  75. features = ['derive']
  76. package = 'parity-scale-codec'
  77. version = '1.0.0'
  78. [dependencies.executive]
  79. default_features = false
  80. git = 'https://github.com/paritytech/substrate.git'
  81. package = 'srml-executive'
  82. rev = '0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3'
  83. [dependencies.grandpa]
  84. default-features = false
  85. git = 'https://github.com/paritytech/substrate.git'
  86. package = 'srml-grandpa'
  87. rev = '0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3'
  88. [dependencies.indices]
  89. default_features = false
  90. git = 'https://github.com/paritytech/substrate.git'
  91. package = 'srml-indices'
  92. rev = '0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3'
  93. [dependencies.offchain-primitives]
  94. default-features = false
  95. git = 'https://github.com/paritytech/substrate.git'
  96. package = 'substrate-offchain-primitives'
  97. rev = '0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3'
  98. [dependencies.primitives]
  99. default_features = false
  100. git = 'https://github.com/paritytech/substrate.git'
  101. package = 'substrate-primitives'
  102. rev = '0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3'
  103. [dependencies.rstd]
  104. default_features = false
  105. git = 'https://github.com/paritytech/substrate.git'
  106. package = 'sr-std'
  107. rev = '0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3'
  108. [dependencies.runtime-io]
  109. default_features = false
  110. git = 'https://github.com/paritytech/substrate.git'
  111. package = 'sr-io'
  112. rev = '0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3'
  113. [dependencies.safe-mix]
  114. default-features = false
  115. version = '1.0'
  116. [dependencies.serde]
  117. features = ['derive']
  118. optional = true
  119. version = '1.0.101'
  120. [dependencies.runtime-primitives]
  121. default_features = false
  122. git = 'https://github.com/paritytech/substrate.git'
  123. package = 'sr-primitives'
  124. rev = '0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3'
  125. [dependencies.substrate-session]
  126. default-features = false
  127. git = 'https://github.com/paritytech/substrate.git'
  128. rev = '0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3'
  129. [dependencies.sudo]
  130. default_features = false
  131. git = 'https://github.com/paritytech/substrate.git'
  132. package = 'srml-sudo'
  133. rev = '0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3'
  134. [dependencies.srml-support]
  135. default_features = false
  136. git = 'https://github.com/paritytech/substrate.git'
  137. package = 'srml-support'
  138. rev = '0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3'
  139. [dependencies.system]
  140. default_features = false
  141. git = 'https://github.com/paritytech/substrate.git'
  142. package = 'srml-system'
  143. rev = '0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3'
  144. [dependencies.timestamp]
  145. default_features = false
  146. git = 'https://github.com/paritytech/substrate.git'
  147. package = 'srml-timestamp'
  148. rev = '0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3'
  149. [dependencies.version]
  150. default_features = false
  151. git = 'https://github.com/paritytech/substrate.git'
  152. package = 'sr-version'
  153. rev = '0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3'
  154. [dependencies.authority-discovery-primitives]
  155. default_features = false
  156. git = 'https://github.com/paritytech/substrate.git'
  157. package = 'substrate-authority-discovery-primitives'
  158. rev = '0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3'
  159. [dependencies.authority-discovery]
  160. default_features = false
  161. git = 'https://github.com/paritytech/substrate.git'
  162. package = 'srml-authority-discovery'
  163. rev = '0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3'
  164. [dependencies.authorship]
  165. default_features = false
  166. git = 'https://github.com/paritytech/substrate.git'
  167. package = 'srml-authorship'
  168. rev = '0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3'
  169. [dependencies.finality-tracker]
  170. default_features = false
  171. git = 'https://github.com/paritytech/substrate.git'
  172. package = 'srml-finality-tracker'
  173. rev = '0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3'
  174. [dependencies.im-online]
  175. default_features = false
  176. git = 'https://github.com/paritytech/substrate.git'
  177. package = 'srml-im-online'
  178. rev = '0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3'
  179. [dependencies.session]
  180. default_features = false
  181. git = 'https://github.com/paritytech/substrate.git'
  182. package = 'srml-session'
  183. rev = '0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3'
  184. [dependencies.offences]
  185. default_features = false
  186. git = 'https://github.com/paritytech/substrate.git'
  187. package = 'srml-offences'
  188. rev = '0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3'
  189. [dependencies.sr-staking-primitives]
  190. default_features = false
  191. git = 'https://github.com/paritytech/substrate.git'
  192. package = 'sr-staking-primitives'
  193. rev = '0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3'
  194. [dependencies.staking]
  195. default_features = false
  196. git = 'https://github.com/paritytech/substrate.git'
  197. package = 'srml-staking'
  198. rev = '0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3'
  199. [dependencies.transaction-payment]
  200. package = "srml-transaction-payment"
  201. git = 'https://github.com/paritytech/substrate.git'
  202. default_features = false
  203. rev = '0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3'
  204. [dependencies.randomness-collective-flip]
  205. package = "srml-randomness-collective-flip"
  206. git = 'https://github.com/paritytech/substrate.git'
  207. default_features = false
  208. rev = '0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3'
  209. [dependencies.system-rpc-runtime-api]
  210. package = "srml-system-rpc-runtime-api"
  211. git = 'https://github.com/paritytech/substrate.git'
  212. default_features = false
  213. rev = '0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3'
  214. # don't rename the dependency it is causing some strange compiler error:
  215. # https://github.com/rust-lang/rust/issues/64450
  216. [dependencies.srml-staking-reward-curve]
  217. package = 'srml-staking-reward-curve'
  218. git = 'https://github.com/paritytech/substrate.git'
  219. default_features = false
  220. rev = '0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3'
  221. [build-dependencies.wasm-builder-runner]
  222. package = 'substrate-wasm-builder-runner'
  223. version = '1.0.4'
  224. [dependencies.forum]
  225. default_features = false
  226. git = 'https://github.com/joystream/substrate-forum-module'
  227. package = 'substrate-forum-module'
  228. rev = '4bdeadaadfcca1fd6e822c520f429d4beacc4c8a'
  229. [dependencies.minting]
  230. default_features = false
  231. git = 'https://github.com/joystream/substrate-token-minting-module/'
  232. package = 'substrate-token-mint-module'
  233. rev = '5570e3b56e9caffa7df1dbede6308b2e6ce18217'
  234. [dependencies.recurringrewards]
  235. default_features = false
  236. git = 'https://github.com/Joystream/substrate-recurring-reward-module'
  237. package = 'substrate-recurring-reward-module'
  238. rev = '417f7bb5b82ae50f02716ac4eefa2fc7952e0f61'
  239. [dependencies.stake]
  240. default_features = false
  241. git = 'https://github.com/Joystream/substrate-stake-module/'
  242. package = 'substrate-stake-module'
  243. rev = '0516efe9230da112bc095e28f34a3715c2e03ca8'
  244. [dependencies.hiring]
  245. default_features = false
  246. git = 'https://github.com/Joystream/substrate-hiring-module'
  247. package = 'substrate-hiring-module'
  248. rev = '485c8be73891183910721e874cf9741dec6d824a'
  249. [dependencies.versioned_store]
  250. default_features = false
  251. package ='substrate-versioned-store'
  252. git = 'https://github.com/joystream/substrate-versioned-store-module'
  253. rev = 'd0c68722405355404840512edf3064d5ced3e1fe'
  254. [dependencies.versioned_store_permissions]
  255. default_features = false
  256. package = 'substrate-versioned-store-permissions-module'
  257. git = 'https://github.com/joystream/substrate-versioned-store-permissions-module'
  258. rev = '816b796b1b72bba05eebe128cdaa5e18611ac3ae'