packages feed

waitra-0.0.1.0: waitra.cabal

name:                waitra
version:             0.0.1.0
synopsis:            A very simple Wai router
description:
  Waitra is a very simple router.
  It's useful for writing simple API web-services,
  when you don't want to use the whole Yesod stack.
homepage:            https://github.com/futurice/waitra
license:             MIT
license-file:        LICENSE
author:              Oleg Grenrus <oleg.grenrus@iki.fi>
maintainer:          Oleg Grenrus <oleg.grenrus@iki.fi>
copyright:           (c) 2015 Futurice
category:            Web
build-type:          Simple
extra-source-files:  README.md
cabal-version:       >=1.10

library
  exposed-modules:     Network.Waitra
  other-extensions:    RankNTypes, GADTs, OverloadedStrings
  build-depends:       base >=4.6 && <4.9,
                       http-types >=0.8.6,
                       regex-applicative >=0.3.1,
                       text >=1.1.0.0,
                       wai >=3.0.2.3
  hs-source-dirs:      src
  ghc-options:         -Wall
  default-language:    Haskell2010

source-repository head
  type:     git
  location: git://github.com/futurice/waitra.git