Cargo.toml 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  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. 'serde',
  18. 'proposal_engine/std',
  19. 'proposal_discussion/std',
  20. 'stake/std',
  21. 'balances/std',
  22. 'membership/std',
  23. 'governance/std',
  24. 'mint/std',
  25. 'roles/std',
  26. ]
  27. [dependencies.num_enum]
  28. default_features = false
  29. version = "0.4.2"
  30. [dependencies.serde]
  31. features = ['derive']
  32. optional = true
  33. version = '1.0.101'
  34. [dependencies.codec]
  35. default-features = false
  36. features = ['derive']
  37. package = 'parity-scale-codec'
  38. version = '1.0.0'
  39. [dependencies.primitives]
  40. default_features = false
  41. git = 'https://github.com/paritytech/substrate.git'
  42. package = 'substrate-primitives'
  43. rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'
  44. [dependencies.rstd]
  45. default_features = false
  46. git = 'https://github.com/paritytech/substrate.git'
  47. package = 'sr-std'
  48. rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'
  49. [dependencies.sr-primitives]
  50. default_features = false
  51. git = 'https://github.com/paritytech/substrate.git'
  52. package = 'sr-primitives'
  53. rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'
  54. [dependencies.srml-support]
  55. default_features = false
  56. git = 'https://github.com/paritytech/substrate.git'
  57. package = 'srml-support'
  58. rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'
  59. [dependencies.system]
  60. default_features = false
  61. git = 'https://github.com/paritytech/substrate.git'
  62. package = 'srml-system'
  63. rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'
  64. [dependencies.timestamp]
  65. default_features = false
  66. git = 'https://github.com/paritytech/substrate.git'
  67. package = 'srml-timestamp'
  68. rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'
  69. [dependencies.balances]
  70. package = 'srml-balances'
  71. default-features = false
  72. git = 'https://github.com/paritytech/substrate.git'
  73. rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'
  74. [dependencies.runtime-io]
  75. default_features = false
  76. git = 'https://github.com/paritytech/substrate.git'
  77. package = 'sr-io'
  78. rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'
  79. [dependencies.stake]
  80. default_features = false
  81. package = 'substrate-stake-module'
  82. path = '../../stake'
  83. [dependencies.membership]
  84. default_features = false
  85. package = 'substrate-membership-module'
  86. path = '../../membership'
  87. [dependencies.governance]
  88. default_features = false
  89. package = 'substrate-governance-module'
  90. path = '../../governance'
  91. [dependencies.mint]
  92. default_features = false
  93. package = 'substrate-token-mint-module'
  94. path = '../../token-minting'
  95. [dependencies.proposal_engine]
  96. default_features = false
  97. package = 'substrate-proposals-engine-module'
  98. path = '../engine'
  99. [dependencies.proposal_discussion]
  100. default_features = false
  101. package = 'substrate-proposals-discussion-module'
  102. path = '../discussion'
  103. [dependencies.common]
  104. default_features = false
  105. package = 'substrate-common-module'
  106. path = '../../common'
  107. [dependencies.content_working_group]
  108. default_features = false
  109. package = 'substrate-content-working-group-module'
  110. path = '../../content-working-group'
  111. [dependencies.roles]
  112. default_features = false
  113. package = 'substrate-roles-module'
  114. path = '../../roles'
  115. [dev-dependencies.hiring]
  116. default_features = false
  117. package = 'substrate-hiring-module'
  118. path = '../../hiring'
  119. [dev-dependencies.versioned_store]
  120. default_features = false
  121. package ='substrate-versioned-store'
  122. path = '../../versioned-store'
  123. [dependencies.versioned_store]
  124. default_features = false
  125. package ='substrate-versioned-store'
  126. path = '../../versioned-store'
  127. [dev-dependencies.versioned_store_permissions]
  128. default_features = false
  129. package = 'substrate-versioned-store-permissions-module'
  130. path = '../../versioned-store-permissions'
  131. [dev-dependencies.recurring_rewards]
  132. default_features = false
  133. package = 'substrate-recurring-reward-module'
  134. path = '../../recurring-reward'