hs-tls/extra/tls-extra.cabal

62 lines
1.9 KiB
Text
Raw Normal View History

Name: tls-extra
Version: 0.7.0
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
Flag test
Description: Build unit test
Default: False
Library
2011-03-23 21:33:41 +00:00
Build-Depends: base > 3 && < 5
, tls >= 1.2.0 && < 1.3.0
, mtl
, network >= 2.3
, cryptohash >= 0.6
, bytestring
, vector
, cipher-rc4
, cipher-aes >= 0.2 && < 0.3
, crypto-pubkey >= 0.2.0
, crypto-random
2013-12-03 07:20:56 +00:00
, pem >= 0.1.0 && < 0.3.0
2011-05-11 07:25:33 +00:00
, time
Exposed-modules: Network.TLS.Extra
2014-01-25 16:54:15 +00:00
other-modules: Network.TLS.Extra.Cipher
Network.TLS.Extra.Compression
2011-04-10 20:11:25 +00:00
Network.TLS.Extra.Connection
Network.TLS.Extra.File
2011-03-20 07:07:57 +00:00
ghc-options: -Wall -fno-warn-missing-signatures
if os(windows)
cpp-options: -DNOCERTVERIFY
executable Tests
Main-is: Tests.hs
if flag(test)
Buildable: True
Build-Depends: base >= 3 && < 5
, HUnit
, QuickCheck >= 2
, bytestring
, cprng-aes >= 0.5.0
, cipher-aes >= 0.2 && < 0.3
else
Buildable: False
if os(windows)
cpp-options: -DNOCERTVERIFY
source-repository head
type: git
location: git://github.com/vincenthz/hs-tls