packages feed

yesod-crud-persist-0.1.1: yesod-crud-persist.cabal

-- Initial yesod-crud-persist.cabal generated by cabal init.  For further 
-- documentation, see http://haskell.org/cabal/users-guide/

name:                yesod-crud-persist
version:             0.1.1
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
-- copyright:           
category:            Web
build-type:          Simple
-- extra-source-files:  
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
                     , persistent >= 1.2
                     , lens         >= 4.0
                     , text         
                     , transformers >= 0.3.0
                     , wai          >= 2.0
  exposed-modules:     Yesod.Crud
                     , Yesod.Crud.Simple
                     , Yesod.Crud.Internal
  default-extensions:  QuasiQuotes
                     , TemplateHaskell
                     , GeneralizedNewtypeDeriving
                     , RecordWildCards
                     , StandaloneDeriving
                     , FlexibleContexts
                     , FlexibleInstances
                     , MultiParamTypeClasses
                     , TypeFamilies
                     , OverloadedStrings
                     , RankNTypes
                     , ScopedTypeVariables
  hs-source-dirs:      src
  default-language:    Haskell2010