|
1 |
| -name: http-reverse-proxy |
2 |
| -version: 0.6.2.0 |
3 |
| -synopsis: Reverse proxy HTTP requests, either over raw sockets or with WAI |
4 |
| -description: Provides a simple means of reverse-proxying HTTP requests. The raw approach uses the same technique as leveraged by keter, whereas the WAI approach performs full request/response parsing via WAI and http-conduit. |
5 |
| -homepage: https://github.com/fpco/http-reverse-proxy |
6 |
| -license: BSD3 |
7 |
| -license-file: LICENSE |
8 |
| -author: Michael Snoyman |
9 |
| - |
10 |
| -category: Web |
11 |
| -build-type: Simple |
12 |
| -cabal-version: >=1.10 |
13 |
| -extra-source-files: README.md ChangeLog.md |
| 1 | +name: http-reverse-proxy |
| 2 | +version: 0.6.2.0 |
| 3 | +synopsis: |
| 4 | + Reverse proxy HTTP requests, either over raw sockets or with WAI |
| 5 | + |
| 6 | +description: |
| 7 | + Provides a simple means of reverse-proxying HTTP requests. The raw approach uses the same technique as leveraged by keter, whereas the WAI approach performs full request/response parsing via WAI and http-conduit. |
| 8 | + |
| 9 | +homepage: https://github.com/fpco/http-reverse-proxy |
| 10 | +license: BSD3 |
| 11 | +license-file: LICENSE |
| 12 | +author: Michael Snoyman |
| 13 | + |
| 14 | +category: Web |
| 15 | +build-type: Simple |
| 16 | +cabal-version: >=1.10 |
| 17 | +extra-source-files: |
| 18 | + ChangeLog.md |
| 19 | + README.md |
14 | 20 |
|
15 | 21 | library
|
16 |
| - default-language: Haskell2010 |
17 |
| - exposed-modules: Network.HTTP.ReverseProxy |
18 |
| - other-modules: Paths_http_reverse_proxy |
19 |
| - if impl(ghc < 8) |
| 22 | + default-language: Haskell2010 |
| 23 | + exposed-modules: Network.HTTP.ReverseProxy |
| 24 | + other-modules: Paths_http_reverse_proxy |
| 25 | + |
| 26 | + if impl(ghc <8) |
20 | 27 | buildable: False
|
21 |
| - build-depends: base >= 4.11 && < 5 |
22 |
| - , text >= 0.11 |
23 |
| - , bytestring >= 0.9 |
24 |
| - , case-insensitive >= 0.4 |
25 |
| - , http-types >= 0.6 |
26 |
| - , word8 >= 0.0 |
27 |
| - , blaze-builder >= 0.3 |
28 |
| - , http-client >= 0.3 |
29 |
| - , wai >= 3.0 |
30 |
| - , network |
31 |
| - , conduit >= 1.3 |
32 |
| - , conduit-extra |
33 |
| - , wai-logger |
34 |
| - , resourcet |
35 |
| - , containers |
36 |
| - , unliftio >= 0.2 |
37 |
| - , transformers |
38 |
| - , streaming-commons |
| 28 | + |
| 29 | + build-depends: |
| 30 | + base >=4.11 && <5 |
| 31 | + , blaze-builder >=0.3 |
| 32 | + , bytestring >=0.9 |
| 33 | + , case-insensitive >=0.4 |
| 34 | + , conduit >=1.3 |
| 35 | + , conduit-extra |
| 36 | + , containers |
| 37 | + , http-client >=0.3 |
| 38 | + , http-types >=0.6 |
| 39 | + , network |
| 40 | + , resourcet |
| 41 | + , streaming-commons |
| 42 | + , text >=0.11 |
| 43 | + , transformers |
| 44 | + , unliftio >=0.2 |
| 45 | + , wai >=3.0 |
| 46 | + , wai-logger |
| 47 | + , word8 >=0.0 |
39 | 48 |
|
40 | 49 | test-suite test
|
41 |
| - default-language: Haskell2010 |
42 |
| - type: exitcode-stdio-1.0 |
43 |
| - main-is: main.hs |
44 |
| - hs-source-dirs: test |
45 |
| - build-depends: base < 10 |
46 |
| - , http-reverse-proxy |
47 |
| - , wai |
48 |
| - , http-types |
49 |
| - , hspec >= 1.3 |
50 |
| - , warp >= 2.1 |
51 |
| - , bytestring |
52 |
| - , conduit >= 1.1 |
53 |
| - , conduit-extra |
54 |
| - , blaze-builder |
55 |
| - , transformers |
56 |
| - , unliftio |
57 |
| - , network |
58 |
| - , http-conduit >= 2.3 |
59 |
| - , resourcet |
60 |
| - , streaming-commons |
| 50 | + default-language: Haskell2010 |
| 51 | + type: exitcode-stdio-1.0 |
| 52 | + main-is: main.hs |
| 53 | + hs-source-dirs: test |
| 54 | + build-depends: |
| 55 | + base <10 |
| 56 | + , blaze-builder |
| 57 | + , bytestring |
| 58 | + , conduit >=1.1 |
| 59 | + , conduit-extra |
| 60 | + , hspec >=1.3 |
| 61 | + , http-conduit >=2.3 |
| 62 | + , http-reverse-proxy |
| 63 | + , http-types |
| 64 | + , network |
| 65 | + , resourcet |
| 66 | + , streaming-commons |
| 67 | + , transformers |
| 68 | + , unliftio |
| 69 | + , wai |
| 70 | + , warp >=2.1 |
61 | 71 |
|
62 | 72 | source-repository head
|
63 | 73 | type: git
|
|
0 commit comments