1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
|
name: classy-prelude-yesod
version: 1.0.0
synopsis: Provide a classy prelude including common Yesod functionality.
description: This is an extension of classy-prelude-conduit, adding in commonly used functions and data types from Yesod.
homepage: https://github.com/snoyberg/mono-traversable
license: MIT
license-file: LICENSE
author: Michael Snoyman
maintainer: michael@snoyman.com
category: Control
build-type: Simple
cabal-version: >=1.8
extra-source-files: README.md ChangeLog.md
library
exposed-modules: ClassyPrelude.Yesod
build-depends: base >= 4 && < 5
, classy-prelude >= 1.0.0 && < 1.0.1
, classy-prelude-conduit >= 1.0.0 && < 1.0.1
, yesod >= 1.2
, yesod-newsfeed
, yesod-static
, http-types
, http-conduit
, persistent >= 1.1
, aeson
, data-default
source-repository head
type: git
location: https://github.com/snoyberg/mono-traversable.git
|