-
Notifications
You must be signed in to change notification settings - Fork 7
/
openssl-streams.cabal
62 lines (51 loc) · 2.09 KB
/
openssl-streams.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
Name: openssl-streams
Version: 1.2.3.0
License: BSD3
License-file: LICENSE
Category: Network, IO-Streams
Build-type: Simple
Cabal-version: >= 1.10
Synopsis: OpenSSL network support for io-streams.
Maintainer: Gregory Collins <[email protected]>
Description:
The openssl-streams library contains io-streams routines for secure
networking using OpenSSL (by way of HsOpenSSL).
Extra-Source-Files: CONTRIBUTORS,
changelog.md
test/cert.pem,
test/key.pem
------------------------------------------------------------------------------
Library
hs-source-dirs: src
Default-language: Haskell2010
ghc-options: -Wall -fwarn-tabs -funbox-strict-fields
-fno-warn-unused-do-bind
Exposed-modules: System.IO.Streams.SSL
Build-depends: base >= 4 && <5,
bytestring >= 0.9.2 && <0.12,
HsOpenSSL >= 0.10.3 && <0.12,
io-streams >= 1.0 && <1.6,
network >= 2.4 && <3.2
------------------------------------------------------------------------------
Test-suite testsuite
Type: exitcode-stdio-1.0
hs-source-dirs: src test
Main-is: TestSuite.hs
Default-language: Haskell2010
Other-modules: System.IO.Streams.SSL
ghc-options: -Wall -fwarn-tabs -funbox-strict-fields -threaded
-fno-warn-unused-do-bind
ghc-prof-options: -auto-all
Build-depends: base,
bytestring,
HsOpenSSL,
io-streams,
network,
-- test deps follow.
HUnit >= 1.2 && <2,
test-framework >= 0.8.0.3 && <0.9,
test-framework-hunit >= 0.3 && <0.4
other-extensions: OverloadedStrings
source-repository head
type: git
location: git://github.com/snapframework/openssl-streams.git