-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathio-streams-haproxy.cabal
88 lines (75 loc) · 2.92 KB
/
io-streams-haproxy.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
88
cabal-version: 2.2
name: io-streams-haproxy
version: 1.0.1.0
synopsis: HAProxy protocol 1.5 support for io-streams
description: HAProxy protocol version 1.5 support (see
<http://haproxy.1wt.eu/download/1.5/doc/proxy-protocol.txt>) for applications
using io-streams. The proxy protocol allows information about a networked
peer (like remote address and port) to be propagated through a forwarding
proxy that is configured to speak this protocol.
homepage: http://snapframework.com/
license: BSD-3-Clause
license-file: LICENSE
author: Gregory Collins
maintainer: [email protected]
copyright: (c) 2014 Google, Inc. and CONTRIBUTORS
category: Network, IO-Streams
build-type: Simple
extra-source-files:
CONTRIBUTORS,
cbits/byteorder.c
extra-doc-files:
changelog.md
Bug-Reports: https://github.com/snapframework/io-streams-haproxy/issues
tested-with:
GHC == 8.10.7
GHC == 9.0.2
GHC == 9.2.8
GHC == 9.4.8
GHC == 9.6.6
GHC == 9.8.2
GHC == 9.10.1
source-repository head
type: git
location: https://github.com/snapframework/io-streams-haproxy.git
library
hs-source-dirs: src
exposed-modules: System.IO.Streams.Network.HAProxy
other-modules: System.IO.Streams.Network.Internal.Address
c-sources: cbits/byteorder.c
build-depends: base >= 4.5 && < 5,
attoparsec >= 0.7 && < 0.15,
bytestring >= 0.9 && < 0.13,
io-streams >= 1.3 && < 1.6,
network >= 2.3 && < 4,
transformers >= 0.3 && < 0.7
default-language: Haskell2010
ghc-options: -Wall -fwarn-tabs -funbox-strict-fields
-fno-warn-unused-do-bind
if os(windows)
cpp-options: -DWINDOWS
cc-options: -DWINDOWS
test-suite testsuite
type: exitcode-stdio-1.0
hs-source-dirs: src test
Main-is: TestSuite.hs
Default-language: Haskell2010
c-sources: cbits/byteorder.c
ghc-options: -Wall -fwarn-tabs -funbox-strict-fields -threaded
-fno-warn-unused-do-bind
Other-modules: System.IO.Streams.Network.HAProxy,
System.IO.Streams.Network.HAProxy.Tests,
System.IO.Streams.Network.Internal.Address
build-depends: base,
attoparsec,
bytestring,
io-streams,
network,
transformers,
------------------------------
HUnit >= 1.2 && <2,
test-framework >= 0.8.0.3 && <0.9,
test-framework-hunit >= 0.2.7 && <0.4
if os(windows)
cpp-options: -DWINDOWS
cc-options: -DWINDOWS