Cargo.toml 926 B

123456789101112131415161718192021222324252627282930313233343536
  1. # -*- coding: utf-8 -*-
  2. [workspace]
  3. members = [
  4. # Webserver CGI frontend:
  5. "cms-cgi", # Webserver CGI executable.
  6. # Daemons:
  7. "cms-backd", # Backend daemon.
  8. "cms-fsd", # Database access daemon.
  9. "cms-postd", # Post execution daemon.
  10. # Daemon communication sockets:
  11. "cms-socket", # Generic socket abstraction.
  12. "cms-socket-back", # Backend daemon access socket.
  13. "cms-socket-db", # Database daemon access socket.
  14. "cms-socket-post", # Post daemon access socket.
  15. # Helper libraries:
  16. "cms-ident", # CMS page identifier encapsulation.
  17. "cms-systemd", # Systemd daemon helper routines.
  18. "cms-seccomp", # Seccomp abstraction.
  19. ]
  20. resolver = "2"
  21. [profile.release]
  22. opt-level = 3
  23. lto = "fat"
  24. panic = "abort"
  25. strip = "symbols"
  26. debug-assertions = false
  27. overflow-checks = true
  28. codegen-units = 1
  29. # vim: ts=4 sw=4 expandtab