haskellnet-ssl/HaskellNet-SSL.cabal
Daniel P. Wright 440140e859 Explicitly set higher tls/tls-extra dependencies
Hackage is reporting a build failure relating to cryptocipher, a library
which is no longer required with newer versions of tls/tls-extra.
Explicitly setting these library dependencies to the version I have
installed locally in order to try and resolve the build failure.
2013-08-29 11:56:13 +09:00

37 lines
1.3 KiB
Plaintext

name: HaskellNet-SSL
synopsis: Helpers to connect to SSL/TLS mail servers with HaskellNet
version: 0.1.1.1
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
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
other-modules: Network.HaskellNet.SSL
build-depends: base >= 4 && < 5,
HaskellNet >= 0.3.1,
tls >= 1.1.2,
tls-extra >= 0.6.1,
connection >= 0.1.3,
network >= 2.3,
bytestring,
data-default