1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90
|
name: DAV
version: 1.3.4
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-2020 Clint Adams
category: Web
build-type: Simple
cabal-version: >=1.8
extra-source-files: AUTHORS
flag mtl-compat
description: Get Control.Monad.Except from the mtl-compat package
default: False
library
exposed-modules: Network.Protocol.HTTP.DAV
other-modules: Network.Protocol.HTTP.DAV.TH
ghc-options: -Wall
build-depends: base >= 4.5 && < 5
, bytestring
, case-insensitive >= 0.4
, containers
, data-default
, exceptions >= 0.7
, http-client >= 0.4
, http-client-tls >= 0.2
, http-types >= 0.7
, lens >= 3.0
, transformers >= 0.3
, transformers-base
, transformers-compat >= 0.3
, utf8-string
, xml-conduit >= 1.0
, xml-hamlet >= 0.4
if flag(mtl-compat)
build-depends: mtl >= 2.1 && < 2.2.1, mtl-compat
else
build-depends: mtl >= 2.2.1
executable hdav
main-is: hdav.hs
ghc-options: -Wall
build-depends: base >= 4.5 && < 5
, bytestring
, bytestring
, case-insensitive >= 0.4
, containers
, data-default
, exceptions >= 0.7
, haskeline
, http-client >= 0.4
, http-client-tls >= 0.2
, http-types >= 0.7
, lens >= 3.0
, network >= 2.6.10
, network-uri >= 2.6
, optparse-applicative >= 0.10.0
, transformers >= 0.3
, transformers-base
, transformers-compat >= 0.3
, utf8-string
, xml-conduit >= 1.0
, xml-hamlet >= 0.4
if flag(mtl-compat)
build-depends: mtl >= 2.1 && < 2.2.1, mtl-compat
else
build-depends: mtl >= 2.2.1
source-repository head
type: git
location: https://salsa.debian.org/clint/DAV.git
branch: master
source-repository this
type: git
location: https://salsa.debian.org/clint/DAV.git
tag: DAV/1.3.4
|