packages feed

DAV-0.0: DAV.cabal

name:                DAV
version:             0.0
synopsis:            RFC 4918 WebDAV support
description:
   This is a library for the Web Distributed Authoring and Versioning
   (WebDAV) extensions to HTTP.  At present it supports a very small
   subset of client functionality.
   .
   In addition, there is an executable, hdav, which can be used for
   command-line operation.

homepage:            http://floss.scru.org/hDAV
bug-reports:         mailto:clint@debian.org
license:             GPL-3
license-file:        LICENSE
author:              Clint Adams
maintainer:          clint@debian.org
copyright:           Copyright (C) 2012  Clint Adams
category:            Web
build-type:          Simple
cabal-version:       >=1.8

library
  exposed-modules:  Network.Protocol.HTTP.DAV
  other-modules:    Network.Protocol.HTTP.DAV.TH
  ghc-options:       -Wall
  build-depends:       base ==4.5.*
                     , bytestring
                     , case-insensitive >= 0.4
                     , http-conduit >= 1.4
                     , http-types >= 0.6
                     , lens >= 2.4
                     , lifted-base >= 0.1
                     , mtl >= 2.1
                     , resourcet >= 0.3
                     , transformers >= 0.3
                     , xml-conduit >= 0.7          && <= 0.7.0.3
                     , xml-hamlet >= 0.3           && <= 0.3.0.1
executable hdav
  main-is:           hdav.hs
  ghc-options:       -Wall
  build-depends:       base ==4.5.*
                     , bytestring
                     , case-insensitive >= 0.4
                     , cmdargs >= 0.9
                     , http-conduit >= 1.4
                     , http-types >= 0.6
                     , lens >= 2.4
                     , lifted-base >= 0.1
                     , mtl >= 2.1
                     , network >= 2.3
                     , resourcet >= 0.3
                     , transformers >= 0.3
                     , xml-conduit >= 0.7          && <= 0.7.0.3
                     , xml-hamlet >= 0.3           && <= 0.3.0.1