packages feed

http-directory-0.1.1: http-directory.cabal

cabal-version:       1.18
name:                http-directory
version:             0.1.1
synopsis:            http directory listing library
description:
            Library for listing http directories of files (links).
            Also it can check the size and modtime of files,
            and for url redirects.
homepage:            https://github.com/juhp/http-directory
bug-reports:         https://github.com/juhp/http-directory/issues
license:             MIT
license-file:        LICENSE
author:              Jens Petersen
maintainer:          juhpetersen@gmail.com
copyright:           2019 Jens Petersen
category:            Network
build-type:          Simple
extra-doc-files:     README.md
                   , CHANGELOG.md
tested-with:         GHC == 7.6.3, GHC == 7.8.4, GHC == 7.10.3, GHC == 8.0.2,
                     GHC == 8.2.2, GHC == 8.4.4, GHC == 8.6.4

source-repository head
  type:                git
  location:            https://github.com/juhp/http-directory.git

library
  hs-source-dirs:      src
  exposed-modules:     Network.HTTP.Directory
                       

  build-depends:       base < 5,
                       bytestring,
                       html-conduit,
                       http-client,
                       http-date,
                       http-types,
                       text,
                       time,
                       xml-conduit
  if impl(ghc<8.0)
      Build-depends: semigroups

  ghc-options:         -fwarn-missing-signatures
                       -Wall

  default-language:    Haskell2010
  default-extensions:  OverloadedStrings