packages feed

yesod-crud-persist-0.3: yesod-crud-persist.cabal

name:                yesod-crud-persist
version:             0.3
synopsis:            Flexible CRUD subsite usable with Yesod and Persistent.
description:         Flexible CRUD subsite usable with Yesod and Persistent.
homepage:            https://github.com/andrewthad/yesod-crud-persist
license:             MIT
license-file:        LICENSE
author:              Andrew Martin
maintainer:          andrew.thaddeus@gmail.com
category:            Web
build-type:          Simple
cabal-version:       >=1.10

library
  build-depends:       
      base             >= 4.3 && < 5.0
    , yesod-core       >= 1.4.11
    , yesod-form       >= 1.2
    , yesod-persistent >= 1.2
    , yesod-markdown 
    , persistent       >= 1.2
    , microlens        >= 0.1.0
    , microlens-th     >= 0.1.0
    , text             
    , transformers     >= 0.3.0
    , wai              >= 2.0
    , esqueleto        >= 2.0
    , either
    , time
  exposed-modules:     
      Yesod.OldCrud
    , Yesod.OldCrud.Simple
    , Yesod.OldCrud.Simple.Generic
    , Yesod.OldCrud.Internal
    , Yesod.Crud
    , Yesod.Crud.Simple
  default-extensions:  
      QuasiQuotes
    , TemplateHaskell
    , GeneralizedNewtypeDeriving
    , RecordWildCards
    , StandaloneDeriving
    , FlexibleContexts
    , FlexibleInstances
    , MultiParamTypeClasses
    , TypeFamilies
    , OverloadedStrings
    , RankNTypes
    , ScopedTypeVariables
    , ExistentialQuantification
    , ConstraintKinds
    , UndecidableInstances
  hs-source-dirs:      src
  default-language:    Haskell2010
  ghc-options:       -Wall