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 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
|
name: yesod-default
version: 1.0.1.1
license: MIT
license-file: LICENSE
author: Patrick Brisbin
maintainer: Patrick Brisbin <pbrisbin@gmail.com>
synopsis: Default config and main functions for your yesod application
category: Web, Yesod
stability: Stable
cabal-version: >= 1.6
build-type: Simple
homepage: http://www.yesodweb.com/
description: Convenient wrappers for your the configuration and
execution of your yesod application
library
if os(windows)
cpp-options: -DWINDOWS
build-depends: base >= 4 && < 5
, yesod-core >= 1.0 && < 1.1
, warp >= 1.2 && < 1.3
, wai >= 1.2 && < 1.3
, wai-extra >= 1.2 && < 1.3
, bytestring >= 0.9.1.4
, transformers >= 0.2.2 && < 0.4
, text >= 0.9
, directory >= 1.0
, shakespeare-css >= 1.0 && < 1.1
, shakespeare-js >= 1.0 && < 1.1
, template-haskell
, yaml >= 0.7 && < 0.8
, network-conduit >= 0.4 && < 0.5
, unordered-containers
if !os(windows)
build-depends: unix
exposed-modules: Yesod.Default.Config
, Yesod.Default.Main
, Yesod.Default.Util
, Yesod.Default.Handlers
ghc-options: -Wall
source-repository head
type: git
location: https://github.com/yesodweb/yesod
|