dub.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. {
  2. "name": "hunt-minihttp",
  3. "targetType": "executable",
  4. "description": "A mini http server powered by Hunt.",
  5. "copyright": "Copyright (C) 2017-2020, HuntLabs",
  6. "homepage": "https://www.huntlabs.net",
  7. "license": "Apache-2.0",
  8. "dependencies": {
  9. "hunt": "~>1.5.0-beta.3",
  10. "std_data_json": "~>0.18.2"
  11. },
  12. "versions": [
  13. "POSTGRESQL1"
  14. ],
  15. "configurations": [
  16. {
  17. "name": "default",
  18. "sourcePaths": ["http"],
  19. "libs-posix": [
  20. "http_parser"
  21. ],
  22. "lflags-posix": [
  23. "-Lhttp-parser/"
  24. ],
  25. "versions": [
  26. "HTTP"
  27. ]
  28. },
  29. {
  30. "name": "minihttp",
  31. "sourcePaths": ["pico"],
  32. "libs-posix": [
  33. "picohttpparser"
  34. ],
  35. "lflags-posix": [
  36. "-Lpicohttpparser/"
  37. ],
  38. "versions": [
  39. "MINIHTTP"
  40. ]
  41. },
  42. {
  43. "name": "mmap",
  44. "sourcePaths": ["mmap"],
  45. "libs-posix": [
  46. "picohttpparser"
  47. ],
  48. "lflags-posix": [
  49. "-Lpicohttpparser/"
  50. ],
  51. "versions": [
  52. "MMAP"
  53. ]
  54. }
  55. ],
  56. "subConfigurations": {
  57. "hunt-database": "postgresql"
  58. }
  59. }