Cargo.toml 9.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357
  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.5.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. 'sr-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. 'common/std',
  53. 'content_working_group/std',
  54. 'governance/std',
  55. 'membership/std',
  56. 'memo/std',
  57. 'roles/std',
  58. 'service_discovery/std',
  59. 'storage/std',
  60. ]
  61. [dependencies.babe]
  62. default-features = false
  63. git = 'https://github.com/paritytech/substrate.git'
  64. package = 'srml-babe'
  65. rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'
  66. [dependencies.babe-primitives]
  67. default-features = false
  68. git = 'https://github.com/paritytech/substrate.git'
  69. package = 'substrate-consensus-babe-primitives'
  70. rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'
  71. [dependencies.balances]
  72. default_features = false
  73. git = 'https://github.com/paritytech/substrate.git'
  74. package = 'srml-balances'
  75. rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'
  76. [dependencies.substrate-client]
  77. default_features = false
  78. git = 'https://github.com/paritytech/substrate.git'
  79. package = 'substrate-client'
  80. rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'
  81. [dependencies.codec]
  82. default-features = false
  83. features = ['derive']
  84. package = 'parity-scale-codec'
  85. version = '1.0.0'
  86. [dependencies.executive]
  87. default_features = false
  88. git = 'https://github.com/paritytech/substrate.git'
  89. package = 'srml-executive'
  90. rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'
  91. [dependencies.grandpa]
  92. default-features = false
  93. git = 'https://github.com/paritytech/substrate.git'
  94. package = 'srml-grandpa'
  95. rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'
  96. [dependencies.indices]
  97. default_features = false
  98. git = 'https://github.com/paritytech/substrate.git'
  99. package = 'srml-indices'
  100. rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'
  101. [dependencies.offchain-primitives]
  102. default-features = false
  103. git = 'https://github.com/paritytech/substrate.git'
  104. package = 'substrate-offchain-primitives'
  105. rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'
  106. [dependencies.primitives]
  107. default_features = false
  108. git = 'https://github.com/paritytech/substrate.git'
  109. package = 'substrate-primitives'
  110. rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'
  111. [dependencies.rstd]
  112. default_features = false
  113. git = 'https://github.com/paritytech/substrate.git'
  114. package = 'sr-std'
  115. rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'
  116. [dependencies.runtime-io]
  117. default_features = false
  118. git = 'https://github.com/paritytech/substrate.git'
  119. package = 'sr-io'
  120. rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'
  121. [dependencies.safe-mix]
  122. default-features = false
  123. version = '1.0'
  124. [dependencies.serde]
  125. features = ['derive']
  126. optional = true
  127. version = '1.0.101'
  128. [dependencies.sr-primitives]
  129. default_features = false
  130. git = 'https://github.com/paritytech/substrate.git'
  131. package = 'sr-primitives'
  132. rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'
  133. [dependencies.substrate-session]
  134. default-features = false
  135. git = 'https://github.com/paritytech/substrate.git'
  136. rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'
  137. [dependencies.sudo]
  138. default_features = false
  139. git = 'https://github.com/paritytech/substrate.git'
  140. package = 'srml-sudo'
  141. rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'
  142. [dependencies.srml-support]
  143. default_features = false
  144. git = 'https://github.com/paritytech/substrate.git'
  145. package = 'srml-support'
  146. rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'
  147. [dependencies.system]
  148. default_features = false
  149. git = 'https://github.com/paritytech/substrate.git'
  150. package = 'srml-system'
  151. rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'
  152. [dependencies.timestamp]
  153. default_features = false
  154. git = 'https://github.com/paritytech/substrate.git'
  155. package = 'srml-timestamp'
  156. rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'
  157. [dependencies.version]
  158. default_features = false
  159. git = 'https://github.com/paritytech/substrate.git'
  160. package = 'sr-version'
  161. rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'
  162. [dependencies.authority-discovery-primitives]
  163. default_features = false
  164. git = 'https://github.com/paritytech/substrate.git'
  165. package = 'substrate-authority-discovery-primitives'
  166. rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'
  167. [dependencies.authority-discovery]
  168. default_features = false
  169. git = 'https://github.com/paritytech/substrate.git'
  170. package = 'srml-authority-discovery'
  171. rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'
  172. [dependencies.authorship]
  173. default_features = false
  174. git = 'https://github.com/paritytech/substrate.git'
  175. package = 'srml-authorship'
  176. rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'
  177. [dependencies.finality-tracker]
  178. default_features = false
  179. git = 'https://github.com/paritytech/substrate.git'
  180. package = 'srml-finality-tracker'
  181. rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'
  182. [dependencies.im-online]
  183. default_features = false
  184. git = 'https://github.com/paritytech/substrate.git'
  185. package = 'srml-im-online'
  186. rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'
  187. [dependencies.session]
  188. default_features = false
  189. git = 'https://github.com/paritytech/substrate.git'
  190. package = 'srml-session'
  191. rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'
  192. [dependencies.offences]
  193. default_features = false
  194. git = 'https://github.com/paritytech/substrate.git'
  195. package = 'srml-offences'
  196. rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'
  197. [dependencies.sr-staking-primitives]
  198. default_features = false
  199. git = 'https://github.com/paritytech/substrate.git'
  200. package = 'sr-staking-primitives'
  201. rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'
  202. [dependencies.staking]
  203. default_features = false
  204. git = 'https://github.com/paritytech/substrate.git'
  205. package = 'srml-staking'
  206. rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'
  207. [dependencies.transaction-payment]
  208. package = "srml-transaction-payment"
  209. git = 'https://github.com/paritytech/substrate.git'
  210. default_features = false
  211. rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'
  212. [dependencies.randomness-collective-flip]
  213. package = "srml-randomness-collective-flip"
  214. git = 'https://github.com/paritytech/substrate.git'
  215. default_features = false
  216. rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'
  217. [dependencies.system-rpc-runtime-api]
  218. package = "srml-system-rpc-runtime-api"
  219. git = 'https://github.com/paritytech/substrate.git'
  220. default_features = false
  221. rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'
  222. # don't rename the dependency it is causing some strange compiler error:
  223. # https://github.com/rust-lang/rust/issues/64450
  224. [dependencies.srml-staking-reward-curve]
  225. package = 'srml-staking-reward-curve'
  226. git = 'https://github.com/paritytech/substrate.git'
  227. default_features = false
  228. rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'
  229. [build-dependencies.wasm-builder-runner]
  230. package = 'substrate-wasm-builder-runner'
  231. version = '1.0.4'
  232. [dependencies.forum]
  233. default_features = false
  234. package = 'substrate-forum-module'
  235. git = 'https://github.com/joystream/substrate-forum-module'
  236. tag = 'v1.1.1'
  237. [dependencies.minting]
  238. default_features = false
  239. package = 'substrate-token-mint-module'
  240. git = 'https://github.com/joystream/substrate-token-minting-module/'
  241. tag = 'v1.0.1'
  242. [dependencies.stake]
  243. default_features = false
  244. package = 'substrate-stake-module'
  245. git = 'https://github.com/Joystream/substrate-stake-module/'
  246. tag = 'v1.0.1'
  247. [dependencies.recurringrewards]
  248. default_features = false
  249. package = 'substrate-recurring-reward-module'
  250. git = 'https://github.com/Joystream/substrate-recurring-reward-module'
  251. tag = 'v1.0.1'
  252. [dependencies.hiring]
  253. default_features = false
  254. package = 'substrate-hiring-module'
  255. git = 'https://github.com/Joystream/substrate-hiring-module'
  256. tag = 'v1.0.1'
  257. [dependencies.versioned_store]
  258. default_features = false
  259. package ='substrate-versioned-store'
  260. git = 'https://github.com/joystream/substrate-versioned-store-module'
  261. tag = 'v1.0.1'
  262. [dependencies.versioned_store_permissions]
  263. default_features = false
  264. package = 'substrate-versioned-store-permissions-module'
  265. git = 'https://github.com/joystream/substrate-versioned-store-permissions-module'
  266. tag = 'v1.0.1'
  267. [dependencies.common]
  268. default_features = false
  269. package = 'substrate-common-module'
  270. path = 'runtime-modules/common'
  271. version = '1.0.0'
  272. [dependencies.content_working_group]
  273. default_features = false
  274. package = 'substrate-content-working-group-module'
  275. path = 'runtime-modules/content-working-group'
  276. version = '1.0.0'
  277. [dependencies.governance]
  278. default_features = false
  279. package = 'substrate-governance-module'
  280. path = 'runtime-modules/governance'
  281. version = '1.0.0'
  282. [dependencies.membership]
  283. default_features = false
  284. package = 'substrate-membership-module'
  285. path = 'runtime-modules/membership'
  286. version = '1.0.0'
  287. [dependencies.memo]
  288. default_features = false
  289. package = 'substrate-memo-module'
  290. path = 'runtime-modules/memo'
  291. version = '1.0.0'
  292. [dependencies.roles]
  293. default_features = false
  294. package = 'substrate-roles-module'
  295. path = 'runtime-modules/roles'
  296. version = '1.0.0'
  297. [dependencies.service_discovery]
  298. default_features = false
  299. package = 'substrate-service-discovery-module'
  300. path = 'runtime-modules/service-discovery'
  301. version = '1.0.0'
  302. [dependencies.storage]
  303. default_features = false
  304. package = 'substrate-storage-module'
  305. path = 'runtime-modules/storage'
  306. version = '1.0.0'