cabal-version: 3.0 name: http-grammar version: 0.1.0.4 synopsis: Attoparsec-based parsers for the RFC-2616 HTTP grammar rules. description: The purpose of this package is to provide a faithful implementation of the RFC-2616 HTTP grammar rules without concession to popular deviations that "happen in the wild". The implementation is far from complete. My development plan for this package is to add various productions from time to time as I need them in other work I'm doing. Contributions are most welcome and highly encouraged. homepage: https://github.com/owensmurray/http-grammar license: Apache-2.0 license-file: LICENSE author: Rick Owens maintainer: rowens@owensmurray.com copyright: 2025 Owens Murray LLC category: Web build-type: Simple extra-source-files: README.md library exposed-modules: Network.HTTP.Grammar -- other-modules: other-extensions: OverloadedStrings build-depends: , attoparsec >= 0.13.2.4 && < 0.15 , bytestring >= 0.10.10.1 && < 0.13 , base >= 4.13.0.0 && < 4.22 hs-source-dirs: src default-language: Haskell2010 source-repository head type: git location: https://github.com/owensmurray/http-grammar.git