packages feed

wai-middleware-route-0.7.3: wai-middleware-route.cabal

name:           wai-middleware-route
version:        0.7.3
cabal-version:  >= 1.8
build-type:     Simple
synopsis:       Wai dispatch middleware
stability:      Experimental
author:         Alexander Dorofeev <aka.spin@gmail.com>
maintainer:     Alexander Dorofeev <aka.spin@gmail.com>
category:       Web
license:        BSD3
description:    \"Just enough\" helpers for use @yesod-routes@ with @WAI@.
license-file:   LICENSE
homepage:       https://github.com/akaspin/wai-middleware-route

Source-repository head
  type:      git
  location:  git://github.com/akaspin/wai-middleware-route.git

library
  hs-source-dirs:   src
  build-depends:    base >= 4 && < 5,
                   bytestring >= 0.9 && < 0.11,
                   http-types >= 0.7 && < 0.8,
                   text,
                   wai >= 1.3,
                   yesod-routes
  ghc-options:      -Wall -rtsopts
  exposed-modules:  Network.Wai.Middleware.Route

test-suite test
  type:            exitcode-stdio-1.0
  x-uses-tf:       true
  build-depends:   
                   base >= 4,
                   HUnit >= 1.2 && < 2,
                   test-framework >= 0.4.1,
                   test-framework-hunit,

                   bytestring >= 0.9 && < 0.11,
                   http-types >= 0.7 && < 0.8,
                   text,
                   wai >= 1.3,
                   wai-test >= 1.3,
                   wai-middleware-route
  ghc-options:     -Wall -rtsopts
  hs-source-dirs:  test
  main-is:         Main.hs