haskellnet-ssl/HaskellNet-SSL.cabal
Daniel P. Wright ec5c163e7a Bump version number to 0.3.0.0
Commit bc814b6345 renames one of the
functions, making this a backwards-incompatible change, so I'm upping
the version number to 0.3.0.0 even though the other changes are
relatively minor.
2015-04-20 08:26:00 +09:00

50 lines
1.7 KiB
Plaintext

name: HaskellNet-SSL
synopsis: Helpers to connect to SSL/TLS mail servers with HaskellNet
version: 0.3.0.0
description: This package ties together the HaskellNet and connection
packages to make it easy to open IMAP and SMTP connections
over SSL.
homepage: https://github.com/dpwright/HaskellNet-SSL
license: BSD3
license-file: LICENSE
author: Daniel P. Wright
maintainer: dani@dpwright.com
copyright: (c) 2013 Daniel P. Wright
category: Network
build-type: Simple
cabal-version: >=1.8
data-files: README.md
Flag NoUpperBounds
Description: Removes upper bounds from all packages
Default: False
source-repository head
type: git
location: git://github.com/dpwright/HaskellNet-SSL.git
library
hs-source-dirs: src
ghc-options: -Wall
exposed-modules: Network.HaskellNet.IMAP.SSL
Network.HaskellNet.POP3.SSL
Network.HaskellNet.SMTP.SSL
Network.HaskellNet.SSL
other-modules: Network.HaskellNet.SSL.Internal
if flag(NoUpperBounds)
build-depends: base >= 4,
HaskellNet >= 0.3,
tls >= 1.2,
connection >= 0.2,
network >= 2.4,
bytestring,
data-default
else
build-depends: base >= 4 && < 5,
HaskellNet >= 0.3 && < 0.5,
tls == 1.2.*,
connection == 0.2.*,
network >= 2.4 && < 2.7,
bytestring,
data-default