hs-tls/tls-extra.cabal

98 lines
2.9 KiB
Text
Raw Normal View History

Name: tls-extra
2011-05-04 07:43:47 +00:00
Version: 0.2.1
Description:
a set of extra definitions, default values and helpers for tls.
License: BSD3
License-file: LICENSE
Copyright: Vincent Hanquez <vincent@snarc.org>
Author: Vincent Hanquez <vincent@snarc.org>
Maintainer: Vincent Hanquez <vincent@snarc.org>
Synopsis: TLS extra default values and helpers
Build-Type: Simple
Category: Network
stability: experimental
Cabal-Version: >=1.6
Homepage: http://github.com/vincenthz/hs-tls-extra
Flag test
Description: Build unit test
Default: False
Flag bench
Description: Build benchmarks
Default: False
Flag executable
Description: Build the executable
Default: False
Library
2011-03-23 21:33:41 +00:00
Build-Depends: base > 3 && < 5
2011-05-09 08:19:56 +00:00
, tls >= 0.6.3 && < 0.7
, mtl
, network >= 2.3
, cryptohash >= 0.6
, bytestring
, vector
, crypto-api >= 0.5
, cryptocipher >= 0.2.5
2011-05-09 08:19:56 +00:00
, certificate >= 0.8.1 && < 0.9
2011-04-03 09:48:12 +00:00
, text >= 0.5 && < 1.0
Exposed-modules: Network.TLS.Extra
other-modules: Network.TLS.Extra.Certificate
Network.TLS.Extra.Cipher
Network.TLS.Extra.Compression
2011-04-10 20:11:25 +00:00
Network.TLS.Extra.Connection
Network.TLS.Extra.Thread
2011-03-20 07:07:57 +00:00
ghc-options: -Wall -fno-warn-missing-signatures
if os(windows) || os(osx)
cpp-options: -DNOCERTVERIFY
Executable stunnel
Main-is: Examples/Stunnel.hs
if flag(executable)
Build-Depends: network
, cmdargs
, cprng-aes
Buildable: True
else
Buildable: False
ghc-options: -Wall -fno-warn-missing-signatures
Executable checkciphers
Main-is: Examples/CheckCiphers.hs
if flag(executable)
Build-Depends: network
, cmdargs
, cprng-aes
Buildable: True
else
Buildable: False
ghc-options: -Wall -fno-warn-missing-signatures
Executable retrievecertificate
Main-is: Examples/RetrieveCertificate.hs
if flag(executable)
Build-Depends: network
, cmdargs
, cprng-aes
Buildable: True
else
Buildable: False
ghc-options: -Wall -fno-warn-missing-signatures
executable Tests
Main-is: Tests.hs
if flag(test)
Buildable: True
Build-Depends: base >= 3 && < 5
, HUnit
, QuickCheck >= 2
, bytestring
else
Buildable: False
source-repository head
type: git
location: git://github.com/vincenthz/hs-tls-extra