hs-tls/debug/tls-debug.cabal

80 lines
2.6 KiB
Text
Raw Permalink Normal View History

Name: tls-debug
2014-03-23 06:19:45 +00:00
Version: 0.3.2
Description:
A set of program to test and debug various aspect of the TLS package.
.
License: BSD3
License-file: LICENSE
Copyright: Vincent Hanquez <vincent@snarc.org>
Author: Vincent Hanquez <vincent@snarc.org>
Maintainer: Vincent Hanquez <vincent@snarc.org>
Synopsis: Set of programs for TLS testing and debugging
Build-Type: Simple
Category: Network
stability: experimental
Cabal-Version: >=1.6
Homepage: http://github.com/vincenthz/hs-tls
Executable tls-stunnel
Main-is: Stunnel.hs
Hs-Source-Dirs: src
Build-Depends: base >= 4 && < 5
, network
, bytestring
2013-05-30 06:22:08 +00:00
, x509-system >= 1.0
2013-09-01 06:52:27 +00:00
, cprng-aes >= 0.5.0
2014-01-26 08:17:51 +00:00
, data-default-class
, crypto-pubkey
2013-05-30 06:22:08 +00:00
, tls >= 1.2 && < 1.3
2013-09-03 05:43:42 +00:00
if os(windows)
Buildable: False
else
Buildable: True
ghc-options: -Wall -fno-warn-missing-signatures
2013-06-03 07:55:51 +00:00
-- Executable tls-checkciphers
-- Main-is: CheckCiphers.hs
-- Hs-Source-Dirs: src
-- Build-Depends: base >= 4 && < 5
-- , network
-- , bytestring
-- , cprng-aes
-- , x509-system >= 1.0
-- , tls >= 1.2 && < 1.3
-- Buildable: True
-- ghc-options: -Wall -fno-warn-missing-signatures
Executable tls-retrievecertificate
Main-is: RetrieveCertificate.hs
Hs-Source-Dirs: src
Build-Depends: base >= 4 && < 5
, network
, bytestring
2013-01-19 22:16:13 +00:00
, groom
, time
, pem
2013-09-01 06:52:27 +00:00
, cprng-aes >= 0.5.0
2013-05-30 06:22:08 +00:00
, x509
, x509-system >= 1.4
, x509-validation >= 1.5.0
2013-05-30 06:22:08 +00:00
, tls >= 1.2 && < 1.3
Buildable: True
ghc-options: -Wall -fno-warn-missing-signatures
Executable tls-simpleclient
Main-is: SimpleClient.hs
Hs-Source-Dirs: src
Build-Depends: base >= 4 && < 5
, network
, bytestring
2014-01-26 08:17:51 +00:00
, data-default-class
2013-09-01 06:52:27 +00:00
, cprng-aes >= 0.5.0
2013-05-30 06:22:08 +00:00
, x509-system >= 1.0
, tls >= 1.2 && < 1.3
Buildable: True
ghc-options: -Wall -fno-warn-missing-signatures
source-repository head
type: git
location: git://github.com/vincenthz/hs-tls