97 lines
4.3 KiB
Plaintext
97 lines
4.3 KiB
Plaintext
name: yesod-core
|
|
version: 0.7.0
|
|
license: BSD3
|
|
license-file: LICENSE
|
|
author: Michael Snoyman <michael@snoyman.com>
|
|
maintainer: Michael Snoyman <michael@snoyman.com>
|
|
synopsis: Creation of type-safe, RESTful web applications.
|
|
description:
|
|
Yesod is a framework designed to foster creation of RESTful web application that have strong compile-time guarantees of correctness. It also affords space efficient code and portability to many deployment backends, from CGI to stand-alone serving.
|
|
.
|
|
The Yesod documentation site <http://docs.yesodweb.com/> has much more information, tutorials and information on some of the supporting packages, like Hamlet and web-routes-quasi.
|
|
category: Web, Yesod
|
|
stability: Stable
|
|
cabal-version: >= 1.6
|
|
build-type: Simple
|
|
homepage: http://docs.yesodweb.com/
|
|
|
|
flag test
|
|
description: Build the executable to run unit tests
|
|
default: False
|
|
|
|
flag ghc7
|
|
|
|
library
|
|
if flag(ghc7)
|
|
build-depends: base >= 4.3 && < 5
|
|
cpp-options: -DGHC7
|
|
else
|
|
build-depends: base >= 4 && < 4.3
|
|
build-depends: time >= 1.1.4 && < 1.3
|
|
, wai >= 0.3 && < 0.4
|
|
, wai-extra >= 0.3 && < 0.4
|
|
, bytestring >= 0.9.1.4 && < 0.10
|
|
, directory >= 1 && < 1.2
|
|
, text >= 0.5 && < 0.12
|
|
, template-haskell
|
|
, web-routes-quasi >= 0.6.2 && < 0.7
|
|
, hamlet >= 0.6 && < 0.7
|
|
, blaze-builder >= 0.2.1 && < 0.3
|
|
, transformers >= 0.2 && < 0.3
|
|
, clientsession >= 0.4.0 && < 0.5
|
|
, pureMD5 >= 1.1.0.0 && < 2.2
|
|
, random >= 1.0.0.2 && < 1.1
|
|
, cereal >= 0.2 && < 0.4
|
|
, base64-bytestring >= 0.1 && < 0.2
|
|
, old-locale >= 1.0.0.2 && < 1.1
|
|
, neither >= 0.2 && < 0.3
|
|
, network >= 2.2.1.5 && < 2.4
|
|
, email-validate >= 0.2.5 && < 0.3
|
|
, web-routes >= 0.23 && < 0.24
|
|
, xss-sanitize >= 0.2.3 && < 0.3
|
|
, data-default >= 0.2 && < 0.3
|
|
, failure >= 0.1 && < 0.2
|
|
, containers >= 0.2 && < 0.5
|
|
, monad-peel >= 0.1 && < 0.2
|
|
, enumerator >= 0.4 && < 0.5
|
|
, cookie >= 0.0 && < 0.1
|
|
, json-enumerator >= 0.0 && < 0.1
|
|
, json-types >= 0.1 && < 0.2
|
|
exposed-modules: Yesod
|
|
Yesod.Content
|
|
Yesod.Dispatch
|
|
Yesod.Hamlet
|
|
Yesod.Handler
|
|
Yesod.Request
|
|
Yesod.Widget
|
|
Yesod.Yesod
|
|
Yesod.Helpers.AtomFeed
|
|
Yesod.Helpers.Sitemap
|
|
Yesod.Helpers.Static
|
|
other-modules: Yesod.Internal
|
|
Paths_yesod_core
|
|
ghc-options: -Wall
|
|
|
|
executable runtests
|
|
if flag(ghc7)
|
|
build-depends: base >= 4.3 && < 5
|
|
cpp-options: -DGHC7
|
|
else
|
|
build-depends: base >= 4 && < 4.3
|
|
if flag(test)
|
|
Buildable: True
|
|
cpp-options: -DTEST
|
|
build-depends: test-framework,
|
|
test-framework-quickcheck2,
|
|
test-framework-hunit,
|
|
HUnit,
|
|
QuickCheck >= 2 && < 3
|
|
else
|
|
Buildable: False
|
|
ghc-options: -Wall
|
|
main-is: runtests.hs
|
|
|
|
source-repository head
|
|
type: git
|
|
location: git://github.com/snoyberg/yesod-core.git
|