Cargo.toml 3.7 KB

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