-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhttp-exchange-instantiations.cabal
87 lines (76 loc) · 2.48 KB
/
http-exchange-instantiations.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
cabal-version: 3.0
name: http-exchange-instantiations
version: 0.1.3.0
synopsis: Instantiations of http-exchange
-- description:
license: BSD-3-Clause
license-file: LICENSE
author: Andrew Martin
maintainer: [email protected]
copyright: 2023 Andrew Martin
category: Network
build-type: Simple
extra-doc-files: CHANGELOG.md
library chanimpl
ghc-options: -Wall
exposed-modules:
SocketChannel
SocketInterruptibleChannel
TlsChannel
-- TlsInterruptibleChannel
build-depends:
, base >=4.16.3.0 && <5
, byteslice >=0.2.11
, bytestring >=0.11
, error-codes >=0.1.1
, network >=3.1.4
, network-unexceptional >=0.2
, stm >=2.5.1.0
, tls >=1.8
hs-source-dirs: src-chanimpl
default-language: GHC2021
library
ghc-options: -Wall
exposed-modules:
Http.Exchange.Network
Http.Exchange.Tls
build-depends:
, base >=4.16.3.0
, bytestring >=0.11
, chanimpl
, http-exchange >=0.1.1
, http-interchange >=0.3.1
, network >=3.1.4
, network-unexceptional >=0.2
, stm >=2.5.1.0
, tls >=1.7
hs-source-dirs: src
default-language: GHC2021
mixins:
http-exchange (Exchange as SocketExchange) requires (Channel as SocketChannel),
http-exchange (Exchange as TlsExchange) requires (Channel as TlsChannel),
http-exchange (Exchange as SocketInterruptibleExchange) requires (Channel as SocketInterruptibleChannel)
executable http-insecure
ghc-options: -Wall
main-is: Main.hs
build-depends:
, base >=4.16.3.0
, http-exchange-instantiations
, http-interchange >=0.3.1
, network >=3.1.4
, pretty-show >=1.10
hs-source-dirs: app-http-insecure
default-language: GHC2021
executable http-secure
ghc-options: -Wall
main-is: Main.hs
build-depends:
, base >=4.16.3.0
, data-default >=0.7.1
, http-exchange-instantiations
, http-interchange >=0.3.1
, network >=3.1.4
, pretty-show >=1.10
, tls >=1.7
hs-source-dirs: app-http-secure
default-language: GHC2021