Cargo.toml 4.6 KB

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