Cargo.toml 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184
  1. [package]
  2. name = 'substrate-proposals-codex-module'
  3. version = '2.0.0'
  4. authors = ['Joystream contributors']
  5. edition = '2018'
  6. [features]
  7. default = ['std']
  8. no_std = []
  9. std = [
  10. 'codec/std',
  11. 'rstd/std',
  12. 'srml-support/std',
  13. 'primitives/std',
  14. 'sr-primitives/std',
  15. 'system/std',
  16. 'timestamp/std',
  17. 'staking/std',
  18. 'serde',
  19. 'proposal_engine/std',
  20. 'proposal_discussion/std',
  21. 'stake/std',
  22. 'balances/std',
  23. 'membership/std',
  24. 'governance/std',
  25. 'mint/std',
  26. 'roles/std',
  27. 'common/std',
  28. 'content_working_group/std',
  29. ]
  30. [dependencies.num_enum]
  31. default_features = false
  32. version = "0.4.2"
  33. [dependencies.serde]
  34. features = ['derive']
  35. optional = true
  36. version = '1.0.101'
  37. [dependencies.codec]
  38. default-features = false
  39. features = ['derive']
  40. package = 'parity-scale-codec'
  41. version = '1.0.0'
  42. [dependencies.primitives]
  43. default_features = false
  44. git = 'https://github.com/paritytech/substrate.git'
  45. package = 'substrate-primitives'
  46. rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'
  47. [dependencies.rstd]
  48. default_features = false
  49. git = 'https://github.com/paritytech/substrate.git'
  50. package = 'sr-std'
  51. rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'
  52. [dependencies.sr-primitives]
  53. default_features = false
  54. git = 'https://github.com/paritytech/substrate.git'
  55. package = 'sr-primitives'
  56. rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'
  57. [dependencies.srml-support]
  58. default_features = false
  59. git = 'https://github.com/paritytech/substrate.git'
  60. package = 'srml-support'
  61. rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'
  62. [dependencies.system]
  63. default_features = false
  64. git = 'https://github.com/paritytech/substrate.git'
  65. package = 'srml-system'
  66. rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'
  67. [dependencies.timestamp]
  68. default_features = false
  69. git = 'https://github.com/paritytech/substrate.git'
  70. package = 'srml-timestamp'
  71. rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'
  72. [dependencies.balances]
  73. package = 'srml-balances'
  74. default-features = false
  75. git = 'https://github.com/paritytech/substrate.git'
  76. rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'
  77. [dependencies.staking]
  78. default_features = false
  79. git = 'https://github.com/paritytech/substrate.git'
  80. package = 'srml-staking'
  81. rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'
  82. [dependencies.stake]
  83. default_features = false
  84. package = 'substrate-stake-module'
  85. path = '../../stake'
  86. [dependencies.membership]
  87. default_features = false
  88. package = 'substrate-membership-module'
  89. path = '../../membership'
  90. [dependencies.governance]
  91. default_features = false
  92. package = 'substrate-governance-module'
  93. path = '../../governance'
  94. [dependencies.mint]
  95. default_features = false
  96. package = 'substrate-token-mint-module'
  97. path = '../../token-minting'
  98. [dependencies.proposal_engine]
  99. default_features = false
  100. package = 'substrate-proposals-engine-module'
  101. path = '../engine'
  102. [dependencies.proposal_discussion]
  103. default_features = false
  104. package = 'substrate-proposals-discussion-module'
  105. path = '../discussion'
  106. [dependencies.common]
  107. default_features = false
  108. package = 'substrate-common-module'
  109. path = '../../common'
  110. [dependencies.content_working_group]
  111. default_features = false
  112. package = 'substrate-content-working-group-module'
  113. path = '../../content-working-group'
  114. [dependencies.roles]
  115. default_features = false
  116. package = 'substrate-roles-module'
  117. path = '../../roles'
  118. [dev-dependencies.hiring]
  119. default_features = false
  120. package = 'substrate-hiring-module'
  121. path = '../../hiring'
  122. [dev-dependencies.versioned_store]
  123. default_features = false
  124. package ='substrate-versioned-store'
  125. path = '../../versioned-store'
  126. [dependencies.versioned_store]
  127. default_features = false
  128. package ='substrate-versioned-store'
  129. path = '../../versioned-store'
  130. [dev-dependencies.versioned_store_permissions]
  131. default_features = false
  132. package = 'substrate-versioned-store-permissions-module'
  133. path = '../../versioned-store-permissions'
  134. [dev-dependencies.recurring_rewards]
  135. default_features = false
  136. package = 'substrate-recurring-reward-module'
  137. path = '../../recurring-reward'
  138. [dev-dependencies.sr-staking-primitives]
  139. default_features = false
  140. git = 'https://github.com/paritytech/substrate.git'
  141. package = 'sr-staking-primitives'
  142. rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'
  143. [dev-dependencies.runtime-io]
  144. default_features = false
  145. git = 'https://github.com/paritytech/substrate.git'
  146. package = 'sr-io'
  147. rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'
  148. # don't rename the dependency it is causing some strange compiler error:
  149. # https://github.com/rust-lang/rust/issues/64450
  150. [dev-dependencies.srml-staking-reward-curve]
  151. package = 'srml-staking-reward-curve'
  152. git = 'https://github.com/paritytech/substrate.git'
  153. default_features = false
  154. rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'