dub.json 1011 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "name": "fwb",
  3. "description": "A simple vibe.d server application.",
  4. "copyright": "Copyright © 2015, jin",
  5. "authors": [
  6. "jin",
  7. "Sönke Ludwig"
  8. ],
  9. "dependencies": {
  10. "vibe-d": "0.8.5",
  11. "mir-random": "2.2.3",
  12. "vibe-d:tls": "0.8.5"
  13. },
  14. "targetType": "executable",
  15. "sourcePaths": [],
  16. "subConfigurations": {
  17. "vibe-d": "vibe-core",
  18. "vibe-d:tls": "notls"
  19. },
  20. "versions": [
  21. "VibeManualMemoryManagement"
  22. ],
  23. "configurations": [
  24. {
  25. "name": "mongodb",
  26. "mainSourceFile": "source/mongodb.d"
  27. },
  28. {
  29. "name": "postgresql",
  30. "mainSourceFile": "source/postgresql.d",
  31. "dependencies": {
  32. "vibe-d-postgresql": "2.0.2"
  33. }
  34. }
  35. ],
  36. "buildTypes": {
  37. "debug": {
  38. "buildOptions": ["debugMode", "optimize"]
  39. },
  40. "release": {
  41. "buildOptions": ["releaseMode", "optimize", "inline"],
  42. "dflags": ["-boundscheck=off", "-mcpu=native"],
  43. "dflags-ldc": ["-flto=thin"]
  44. }
  45. }
  46. }