name: http-link-header version: 0.1.0 x-revision: 2 synopsis: A parser and writer for the HTTP Link header as specified in RFC 5988 "Web Linking". description: https://codeberg.org/valpackett/http-link-header category: Web homepage: https://codeberg.org/valpackett/http-link-header author: Val Packett copyright: 2014 Val Packett maintainer: val@packett.cool license: Apache-2.0 license-file: COPYING build-type: Simple cabal-version: >= 1.18 extra-source-files: README.md tested-with: GHC == 7.8.2 source-repository head type: git location: https://codeberg.org/valpackett/http-link-header.git library build-depends: base >= 4.0.0.0 && < 5 , text , errors , network-uri , attoparsec default-language: Haskell2010 exposed-modules: Network.HTTP.Link Network.HTTP.Link.Types Network.HTTP.Link.Parser Network.HTTP.Link.Writer ghc-prof-options: -auto-all -prof ghc-options: -threaded -Wall hs-source-dirs: library test-suite tests build-depends: base >= 4.0.0.0 && < 5 , text , http-link-header , hspec == 1.* , QuickCheck , hspec-attoparsec default-language: Haskell2010 ghc-options: -threaded -fhpc -Wall -Werror hs-source-dirs: test-suite main-is: Spec.hs other-modules: Network.HTTP.Link.ParserSpec Network.HTTP.Link.WriterSpec type: exitcode-stdio-1.0 benchmark benchmarks build-depends: base >= 4.0.0.0 && < 5 , text , http-link-header , directory , transformers , criterion == 1.* default-language: Haskell2010 hs-source-dirs: benchmark main-is: Bench.hs type: exitcode-stdio-1.0