-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathproxy.cabal
45 lines (42 loc) · 1.46 KB
/
proxy.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
name: proxy
version: 0.1
cabal-version: >= 1.10
build-type: Simple
license: AllRightsReserved
license-file: LICENSE
maintainer: asaba90@gmail.com
synopsis: A simple and fast HTTP/1.1 proxy
category: Network
author: Amir Sabbaghi
data-dir: ""
executable proxy
build-depends: base < 4.8,
network >=2.6 && <2.7,
tls >= 1.3.8 && < 1.4,
proxy,
data-default-class >= 0.1.2 && < 0.2
main-is: Main.hs
buildable: True
default-language: Haskell2010
other-extensions: ScopedTypeVariables OverloadedStrings
hs-source-dirs: app
ghc-options: -threaded -rtsopts -with-rtsopts=-N
library
build-depends: base <4.8,
bytestring >=0.10 && <0.11,
case-insensitive >=1.2.0.4 && <1.3,
network,
parsec >=3.1 && <3.2,
utf8-string >=1 && <1.1,
threads >=0.5.1.3 && <0.6,
base64-string >=0.2 && <0.3,
network-simple >= 0.3 && <= 0.4.0.5,
tls >= 1.3.8 && < 1.4,
x509 >= 1.6.3 && < 1.7,
data-default-class >= 0.1.2 && < 0.2
exposed-modules: Server, Proxy, ProxyAuth, Modify, HTTPWorker, HTTPParser
buildable: True
default-language: Haskell2010
ghc-options: -threaded -rtsopts -with-rtsopts=-N
other-extensions: ScopedTypeVariables OverloadedStrings
hs-source-dirs: src