-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathhaxy.cabal
38 lines (35 loc) · 1.63 KB
/
haxy.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
Name: haxy
Version: 1.0.1
Synopsis: A simple HTTP proxy server library
Description: A library for writing HTTP proxy servers with the focus on simplicity, flexibility and modularity. Allows arbitrary transformations on requests and responses and custom caching methods. It's up to the user to make sure that the message transformations are consistent with the HTTP specification. Note that the package versions follow Semantic Versioning model (semver.org).
License: BSD3
License-file: LICENSE
Author: Andrey Chudnov
Maintainer: Andrey Chudnov <[email protected]>
Homepage: http://github.com/achudnov/haxy
Bug-reports: http://github.com/achudnov/haxy/issues
Copyright: (c) 2012-2015 Stevens Institute of Technology
Category: Web
Build-type: Simple
Stability: Stable
Cabal-version: >=1.10
Extra-Source-Files: CHANGELOG
Tested-with: GHC==7.6.3, GHC==7.4.2, GHC==7.8.2
source-repository head
type: git
location: git://github.com/achudnov/haxy.git
source-repository this
type: git
location: git://github.com/achudnov/haxy.git
tag: 1.0.1
Library
Exposed-modules: Network.HTTP.Proxy.Server
Build-depends: http-server >= 1.0.6 && < 1.1
, HTTP >= 4000.2.0 && < 5000
, base >= 4.3.1.0 && < 5
, url >= 2.1.2 && < 2.2
, bytestring >= 0.9 && < 0.11
, data-default-class >= 0.0.1 && < 0.1
, hostname >= 1.0 && < 2
, mtl == 2.*
Default-Language: Haskell2010