Cargo.toml 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  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. 'codec/std',
  11. 'substrate-client/std',
  12. 'rstd/std',
  13. 'runtime-io/std',
  14. 'srml-support/std',
  15. 'balances/std',
  16. 'babe/std',
  17. 'babe-primitives/std',
  18. 'executive/std',
  19. 'indices/std',
  20. 'grandpa/std',
  21. 'primitives/std',
  22. 'sr-primitives/std',
  23. 'system/std',
  24. 'timestamp/std',
  25. 'sudo/std',
  26. 'version/std',
  27. 'serde',
  28. 'safe-mix/std',
  29. 'offchain-primitives/std',
  30. 'substrate-session/std',
  31. 'forum/std',
  32. ]
  33. [dependencies.babe]
  34. default-features = false
  35. git = 'https://github.com/paritytech/substrate.git'
  36. package = 'srml-babe'
  37. branch = 'master'
  38. [dependencies.babe-primitives]
  39. default-features = false
  40. git = 'https://github.com/paritytech/substrate.git'
  41. package = 'substrate-consensus-babe-primitives'
  42. branch = 'master'
  43. [dependencies.balances]
  44. default_features = false
  45. git = 'https://github.com/paritytech/substrate.git'
  46. package = 'srml-balances'
  47. branch = 'master'
  48. [dependencies.substrate-client]
  49. default_features = false
  50. git = 'https://github.com/paritytech/substrate.git'
  51. package = 'substrate-client'
  52. branch = 'master'
  53. [dependencies.codec]
  54. default-features = false
  55. features = ['derive']
  56. package = 'parity-scale-codec'
  57. version = '1.0.0'
  58. [dependencies.executive]
  59. default_features = false
  60. git = 'https://github.com/paritytech/substrate.git'
  61. package = 'srml-executive'
  62. branch = 'master'
  63. [dependencies.grandpa]
  64. default-features = false
  65. git = 'https://github.com/paritytech/substrate.git'
  66. package = 'srml-grandpa'
  67. branch = 'master'
  68. [dependencies.indices]
  69. default_features = false
  70. git = 'https://github.com/paritytech/substrate.git'
  71. package = 'srml-indices'
  72. branch = 'master'
  73. [dependencies.offchain-primitives]
  74. default-features = false
  75. git = 'https://github.com/paritytech/substrate.git'
  76. package = 'substrate-offchain-primitives'
  77. branch = 'master'
  78. #renamed from runtime-primitives
  79. [dependencies.primitives]
  80. default_features = false
  81. git = 'https://github.com/paritytech/substrate.git'
  82. package = 'substrate-primitives'
  83. branch = 'master'
  84. [dependencies.rstd]
  85. default_features = false
  86. git = 'https://github.com/paritytech/substrate.git'
  87. package = 'sr-std'
  88. branch = 'master'
  89. [dependencies.runtime-io]
  90. default_features = false
  91. git = 'https://github.com/paritytech/substrate.git'
  92. package = 'sr-io'
  93. branch = 'master'
  94. [dependencies.safe-mix]
  95. default-features = false
  96. version = '1.0'
  97. [dependencies.serde]
  98. features = ['derive']
  99. optional = true
  100. version = '1.0'
  101. [dependencies.sr-primitives]
  102. default_features = false
  103. git = 'https://github.com/paritytech/substrate.git'
  104. branch = 'master'
  105. [dependencies.substrate-session]
  106. default-features = false
  107. git = 'https://github.com/paritytech/substrate.git'
  108. branch = 'master'
  109. [dependencies.sudo]
  110. default_features = false
  111. git = 'https://github.com/paritytech/substrate.git'
  112. package = 'srml-sudo'
  113. branch = 'master'
  114. [dependencies.srml-support]
  115. default_features = false
  116. git = 'https://github.com/paritytech/substrate.git'
  117. package = 'srml-support'
  118. branch = 'master'
  119. [dependencies.system]
  120. default_features = false
  121. git = 'https://github.com/paritytech/substrate.git'
  122. package = 'srml-system'
  123. branch = 'master'
  124. [dependencies.timestamp]
  125. default_features = false
  126. git = 'https://github.com/paritytech/substrate.git'
  127. package = 'srml-timestamp'
  128. branch = 'master'
  129. [dependencies.version]
  130. default_features = false
  131. git = 'https://github.com/paritytech/substrate.git'
  132. package = 'sr-version'
  133. branch = 'master'
  134. [build-dependencies.wasm-builder-runner]
  135. package = 'substrate-wasm-builder-runner'
  136. version = '1.0.2'
  137. [dependencies.forum]
  138. default_features = false
  139. git = 'https://github.com/mnaamani/substrate-forum-module'
  140. package = 'substrate-forum-module'
  141. branch = "substrate-v2"
  142. # Before releasing Rome - finalize and tag release new forum and update this
  143. # tag = "v1.0.0"