name: reroute version: 0.1.0.0 x-revision: 1 synopsis: abstract implementation of typed and untyped web routing description: abstraction over how urls with/without parameters are mapped to their corresponding handlers homepage: http://github.com/agrafix/reroute license: MIT license-file: LICENSE author: Alexander Thiemann , Tim Baumann maintainer: mail@agrafix.net copyright: (c) 2014 Alexander Thiemann , Tim Baumann category: Web build-type: Simple cabal-version: >=1.10 library exposed-modules: Web.Routing.AbstractRouter, Web.Routing.SafeRouting, Web.Routing.TextRouting build-depends: base >=4.6 && <4.8, transformers >=0.3 && <0.5, text >= 0.11.3.1 && <1.3, unordered-containers ==0.2.*, HList ==0.3.*, regex-compat ==0.95.*, hashable >=1.2 && <1.3, mtl >=2.1 && <2.3, path-pieces >=0.1 && <0.2, hspec2 >=0.4 && <0.5, vector >=0.10 && <0.11 hs-source-dirs: src default-language: Haskell2010 test-suite reroutetest type: exitcode-stdio-1.0 hs-source-dirs: src main-is: Web/Routing/Specs/Main.hs other-modules: Web.Routing.Specs.SafeRoutingSpec, Web.Routing.Specs.TextRoutingSpec build-depends: base >=4.6 && <4.8, transformers >=0.3 && <0.5, text >= 0.11.3.1 && <1.3, unordered-containers ==0.2.*, HList >=0.3, regex-compat ==0.95.*, hashable >=1.2 && <1.3, mtl >=2.1 && <2.3, path-pieces >=0.1 && <0.2, hspec2 >=0.4 && <0.5, vector >=0.10 && <0.11 default-language: Haskell2010 ghc-options: -Wall -fno-warn-orphans source-repository head type: git location: git://github.com/agrafix/reroute.git