packages feed

haxy 0.9 → 0.9.1

raw patch · 2 files changed

+9/−7 lines, 2 filesdep ~bytestring

Dependency ranges changed: bytestring

Files

LICENSE view
@@ -14,9 +14,9 @@       with the distribution.      * Neither the name of Stevens Institute of Technology nor the-      names of the authors other contributors may be used to endorse-      or promote products derived from this software without specific-      prior written permission.+      names of the authors and other contributors may be used to+      endorse or promote products derived from this software without+      specific prior written permission.  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
haxy.cabal view
@@ -1,11 +1,13 @@ Name:                haxy-Version:             0.9+Version:             0.9.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. 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-2013 Stevens Institute of Technology Category:            Web Build-type:          Simple@@ -19,7 +21,7 @@ source-repository this    type: git    location: git://github.com/achudnov/haxy.git-   tag: 0.9+   tag: 0.9.1  Library   Exposed-modules: Network.HTTP.Proxy.Server@@ -27,7 +29,7 @@                , HTTP         >= 4000.2.0 && < 5000                , base         >= 4.3.1.0 && < 5                , url          >= 2.1.2 && < 2.2-               , bytestring   >= 0.9.1.10 && < 0.10+               , bytestring   >= 0.9 && < 0.11                , data-default-class >= 0.0.1 && < 0.1                , hostname     >= 1.0 && < 2   Default-Language: Haskell2010@@ -35,7 +37,7 @@ Executable simple-proxy    Main-Is: test/IdProxy.hs    Build-Depends: base         >= 4.3.1.0 && < 5-                , bytestring   >= 0.9.1.10 && < 0.10+                , bytestring   >= 0.9 && < 0.11                 , data-default-class >= 0.0.1 && < 0.1                 , hostname     >= 1.0 && < 2                 , http-server  >= 1.0.3 && < 1.1