haxy-1.0: haxy.cabal
Name: haxy
Version: 1.0
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. The executable program is a simple non-caching identity proxy and is used for testing the library.
License: BSD3
License-file: LICENSE
Author: Andrey Chudnov
Maintainer: Andrey Chudnov <oss@chudnov.com>
Homepage: http://github.com/achudnov/haxy
Bug-reports: http://github.com/achudnov/haxy/issues
Copyright: (c) 2012-2014 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
Library
Exposed-modules: Network.HTTP.Proxy.Server
Build-depends: http-server >= 1.0.4 && < 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