-- Initial http-grammar.cabal generated by cabal init. For further -- documentation, see http://haskell.org/cabal/users-guide/ name: http-grammar version: 0.1.0.0 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: 2017 Owens Murray LLC category: Web build-type: Simple extra-source-files: ChangeLog.md README.md cabal-version: >=1.10 library exposed-modules: Network.HTTP.Grammar -- other-modules: other-extensions: OverloadedStrings build-depends: attoparsec >= 0.12.1.6 && < 0.14, bytestring >= 0.10.4.0 && < 0.11, base >= 4.7.0.2 && < 4.10 hs-source-dirs: src default-language: Haskell2010 source-repository head type: git location: https://github.com/owensmurray/http-grammar.git