packages feed

yesod-pure-0.1.0.1: yesod-pure.cabal

name:                yesod-pure
version:             0.1.0.1
synopsis:            Yesod in pure Haskell: no Template Haskell or QuasiQuotes
description:         NOTE: Most of the concepts from this package have made it into yesod-core itself since the 1.2 release. Please see <http://www.yesodweb.com/blog/2013/03/yesod-dispatch-version-1-2> for more information, or search the Haddocks for @LiteApp@.
                     .
                     Provides helper functions to simplify programming of Yesod without any code generation or non-Haskell DSLs. Mainly, this is focused on the routing quasi-quoter, though some templating help is provided as well.
homepage:            https://github.com/snoyberg/yesod-pure
license:             MIT
license-file:        LICENSE
author:              Michael Snoyman
maintainer:          michael@snoyman.com
category:            Web, Yesod
build-type:          Simple
cabal-version:       >=1.8
homepage:            https://github.com/snoyberg/yesod-pure

library
  exposed-modules:     Yesod.Pure
                       Yesod.Pure.NoRoute
  build-depends:       base >= 4.5 && < 5
                     , yesod >= 1.1 && < 1.2
                     , yesod-core >= 1.1.3 && < 1.2
                     , text >= 0.11
                     , fast-logger

source-repository head
  type:     git
  location: https://github.com/snoyberg/yesod-pure