Cargo.toml 684 B

1234567891011121314151617181920212223242526272829
  1. [workspace]
  2. members = [
  3. "runtime",
  4. "runtime-modules/proposals/engine",
  5. "runtime-modules/proposals/codex",
  6. "runtime-modules/proposals/discussion",
  7. "runtime-modules/common",
  8. "runtime-modules/council",
  9. "runtime-modules/forum",
  10. "runtime-modules/membership",
  11. "runtime-modules/referendum",
  12. "runtime-modules/storage",
  13. "runtime-modules/working-group",
  14. "runtime-modules/content",
  15. "runtime-modules/constitution",
  16. "runtime-modules/staking-handler",
  17. "runtime-modules/bounty",
  18. "runtime-modules/blog",
  19. "runtime-modules/utility",
  20. "node",
  21. "utils/chain-spec-builder/",
  22. ]
  23. exclude = [
  24. "analyses/bench"
  25. ]
  26. [profile.release]
  27. # Substrate runtime requires unwinding.
  28. panic = "unwind"