control 1.5 KB

123456789101112131415161718192021222324252627282930313233343536
  1. Source: http-parser
  2. Maintainer: Christoph Biedl <debian.axhn@manchmal.in-ulm.de>
  3. Homepage: https://github.com/joyent/http-parser
  4. Standards-Version: 4.1.1
  5. Vcs-Browser: https://git.in-ulm.de/cbiedl/http-parser
  6. Vcs-Git: https://git.in-ulm.de/cbiedl/http-parser.git
  7. Build-Depends: debhelper (>= 10~),
  8. Priority: optional
  9. Section: libs
  10. Package: libhttp-parser2.9
  11. Architecture: any
  12. Pre-Depends:
  13. ${misc:Pre-Depends},
  14. Depends: ${misc:Depends}, ${shlibs:Depends},
  15. Multi-Arch: same
  16. Description: parser for HTTP messages written in C
  17. It parses both requests and responses. The parser is designed to be used in
  18. performance HTTP applications. It does not make any syscalls nor allocations,
  19. it does not buffer data, it can be interrupted at anytime. Depending on your
  20. architecture, it only requires about 40 bytes of data per message stream (in
  21. a web server that is per connection).
  22. Package: libhttp-parser-dev
  23. Architecture: any
  24. Depends: ${misc:Depends},
  25. libhttp-parser2.9 (= ${binary:Version}),
  26. Section: libdevel
  27. Description: parser for HTTP messages: development libraries and header files
  28. It parses both requests and responses. The parser is designed to be used in
  29. performance HTTP applications. It does not make any syscalls nor allocations,
  30. it does not buffer data, it can be interrupted at anytime. Depending on your
  31. architecture, it only requires about 40 bytes of data per message stream (in
  32. a web server that is per connection).
  33. .
  34. This package contains development libraries and header files.