Cargo.toml 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383
  1. [package]
  2. authors = ['Joystream contributors']
  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.15.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. 'proposals_engine/std',
  61. 'proposals_discussion/std',
  62. 'proposals_codex/std',
  63. 'working-group/std',
  64. ]
  65. # [dependencies]
  66. # # https://users.rust-lang.org/t/failure-derive-compilation-error/39062
  67. # quote = '<=1.0.2'
  68. [dependencies.babe]
  69. default-features = false
  70. git = 'https://github.com/paritytech/substrate.git'
  71. package = 'srml-babe'
  72. rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'
  73. [dependencies.babe-primitives]
  74. default-features = false
  75. git = 'https://github.com/paritytech/substrate.git'
  76. package = 'substrate-consensus-babe-primitives'
  77. rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'
  78. [dependencies.balances]
  79. default_features = false
  80. git = 'https://github.com/paritytech/substrate.git'
  81. package = 'srml-balances'
  82. rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'
  83. [dependencies.substrate-client]
  84. default_features = false
  85. git = 'https://github.com/paritytech/substrate.git'
  86. package = 'substrate-client'
  87. rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'
  88. [dependencies.codec]
  89. default-features = false
  90. features = ['derive']
  91. package = 'parity-scale-codec'
  92. version = '1.0.0'
  93. [dependencies.executive]
  94. default_features = false
  95. git = 'https://github.com/paritytech/substrate.git'
  96. package = 'srml-executive'
  97. rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'
  98. [dependencies.grandpa]
  99. default-features = false
  100. git = 'https://github.com/paritytech/substrate.git'
  101. package = 'srml-grandpa'
  102. rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'
  103. [dependencies.indices]
  104. default_features = false
  105. git = 'https://github.com/paritytech/substrate.git'
  106. package = 'srml-indices'
  107. rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'
  108. [dependencies.offchain-primitives]
  109. default-features = false
  110. git = 'https://github.com/paritytech/substrate.git'
  111. package = 'substrate-offchain-primitives'
  112. rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'
  113. [dependencies.primitives]
  114. default_features = false
  115. git = 'https://github.com/paritytech/substrate.git'
  116. package = 'substrate-primitives'
  117. rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'
  118. [dependencies.rstd]
  119. default_features = false
  120. git = 'https://github.com/paritytech/substrate.git'
  121. package = 'sr-std'
  122. rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'
  123. [dependencies.runtime-io]
  124. default_features = false
  125. git = 'https://github.com/paritytech/substrate.git'
  126. package = 'sr-io'
  127. rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'
  128. [dependencies.safe-mix]
  129. default-features = false
  130. version = '1.0'
  131. [dependencies.serde]
  132. features = ['derive']
  133. optional = true
  134. version = '1.0.101'
  135. [dependencies.sr-primitives]
  136. default_features = false
  137. git = 'https://github.com/paritytech/substrate.git'
  138. package = 'sr-primitives'
  139. rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'
  140. [dependencies.substrate-session]
  141. default-features = false
  142. git = 'https://github.com/paritytech/substrate.git'
  143. rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'
  144. [dependencies.sudo]
  145. default_features = false
  146. git = 'https://github.com/paritytech/substrate.git'
  147. package = 'srml-sudo'
  148. rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'
  149. [dependencies.srml-support]
  150. default_features = false
  151. git = 'https://github.com/paritytech/substrate.git'
  152. package = 'srml-support'
  153. rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'
  154. [dependencies.system]
  155. default_features = false
  156. git = 'https://github.com/paritytech/substrate.git'
  157. package = 'srml-system'
  158. rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'
  159. [dependencies.timestamp]
  160. default_features = false
  161. git = 'https://github.com/paritytech/substrate.git'
  162. package = 'srml-timestamp'
  163. rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'
  164. [dependencies.version]
  165. default_features = false
  166. git = 'https://github.com/paritytech/substrate.git'
  167. package = 'sr-version'
  168. rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'
  169. [dependencies.authority-discovery-primitives]
  170. default_features = false
  171. git = 'https://github.com/paritytech/substrate.git'
  172. package = 'substrate-authority-discovery-primitives'
  173. rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'
  174. [dependencies.authority-discovery]
  175. default_features = false
  176. git = 'https://github.com/paritytech/substrate.git'
  177. package = 'srml-authority-discovery'
  178. rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'
  179. [dependencies.authorship]
  180. default_features = false
  181. git = 'https://github.com/paritytech/substrate.git'
  182. package = 'srml-authorship'
  183. rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'
  184. [dependencies.finality-tracker]
  185. default_features = false
  186. git = 'https://github.com/paritytech/substrate.git'
  187. package = 'srml-finality-tracker'
  188. rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'
  189. [dependencies.im-online]
  190. default_features = false
  191. git = 'https://github.com/paritytech/substrate.git'
  192. package = 'srml-im-online'
  193. rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'
  194. [dependencies.session]
  195. default_features = false
  196. git = 'https://github.com/paritytech/substrate.git'
  197. package = 'srml-session'
  198. rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'
  199. [dependencies.offences]
  200. default_features = false
  201. git = 'https://github.com/paritytech/substrate.git'
  202. package = 'srml-offences'
  203. rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'
  204. [dependencies.sr-staking-primitives]
  205. default_features = false
  206. git = 'https://github.com/paritytech/substrate.git'
  207. package = 'sr-staking-primitives'
  208. rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'
  209. [dependencies.staking]
  210. default_features = false
  211. git = 'https://github.com/paritytech/substrate.git'
  212. package = 'srml-staking'
  213. rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'
  214. [dependencies.transaction-payment]
  215. package = "srml-transaction-payment"
  216. git = 'https://github.com/paritytech/substrate.git'
  217. default_features = false
  218. rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'
  219. [dependencies.randomness-collective-flip]
  220. package = "srml-randomness-collective-flip"
  221. git = 'https://github.com/paritytech/substrate.git'
  222. default_features = false
  223. rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'
  224. [dependencies.system-rpc-runtime-api]
  225. package = "srml-system-rpc-runtime-api"
  226. git = 'https://github.com/paritytech/substrate.git'
  227. default_features = false
  228. rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'
  229. # don't rename the dependency it is causing some strange compiler error:
  230. # https://github.com/rust-lang/rust/issues/64450
  231. [dependencies.srml-staking-reward-curve]
  232. package = 'srml-staking-reward-curve'
  233. git = 'https://github.com/paritytech/substrate.git'
  234. default_features = false
  235. rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'
  236. [build-dependencies.wasm-builder-runner]
  237. package = 'substrate-wasm-builder-runner'
  238. version = '1.0.5'
  239. [dependencies.forum]
  240. default_features = false
  241. package = 'substrate-forum-module'
  242. path = '../runtime-modules/forum'
  243. [dependencies.minting]
  244. default_features = false
  245. package = 'substrate-token-mint-module'
  246. path = '../runtime-modules/token-minting'
  247. [dependencies.stake]
  248. default_features = false
  249. package = 'substrate-stake-module'
  250. path = '../runtime-modules/stake'
  251. [dependencies.recurringrewards]
  252. default_features = false
  253. package = 'substrate-recurring-reward-module'
  254. path = '../runtime-modules/recurring-reward'
  255. [dependencies.hiring]
  256. default_features = false
  257. package = 'substrate-hiring-module'
  258. path = '../runtime-modules/hiring'
  259. [dependencies.versioned_store]
  260. default_features = false
  261. package ='substrate-versioned-store'
  262. path = '../runtime-modules/versioned-store'
  263. [dependencies.versioned_store_permissions]
  264. default_features = false
  265. package = 'substrate-versioned-store-permissions-module'
  266. path = '../runtime-modules/versioned-store-permissions'
  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 = '2.0.0'
  302. [dependencies.storage]
  303. default_features = false
  304. package = 'substrate-storage-module'
  305. path = '../runtime-modules/storage'
  306. version = '2.0.0'
  307. [dependencies.proposals_engine]
  308. default_features = false
  309. package = 'substrate-proposals-engine-module'
  310. path = '../runtime-modules/proposals/engine'
  311. version = '2.0.0'
  312. [dependencies.proposals_discussion]
  313. default_features = false
  314. package = 'substrate-proposals-discussion-module'
  315. path = '../runtime-modules/proposals/discussion'
  316. version = '2.0.0'
  317. [dependencies.proposals_codex]
  318. default_features = false
  319. package = 'substrate-proposals-codex-module'
  320. path = '../runtime-modules/proposals/codex'
  321. version = '2.0.0'
  322. [dependencies.working-group]
  323. default_features = false
  324. package = 'substrate-working-group-module'
  325. path = '../runtime-modules/working-group'
  326. version = '1.0.0'