Cargo.toml 4.6 KB

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