-
Notifications
You must be signed in to change notification settings - Fork 4
/
yesod-crud.cabal
54 lines (52 loc) · 2.47 KB
/
yesod-crud.cabal
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
49
50
51
52
53
54
-- Initial yesod-crud.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: yesod-crud
version: 0.1.7
synopsis: Generic administrative CRUD operations as a Yesod subsite
description: This package helps you build administrative CRUD
operations (Create, Retrieve, Update, Delete) into
your web site, as Yesod subsites. There is a demo
site in the @example@ directory in the distribution.
license: BSD3
license-file: LICENSE
stability: alpha
author: Christopher League
maintainer: [email protected]
copyright: (c) 2015 Christopher League
homepage: https://github.com/league/yesod-crud
category: Web
build-type: Simple
cabal-version: >=1.10
library
exposed-modules: Yesod.Contrib.League.Crud
Yesod.Contrib.League.Crud.Persist
Yesod.Contrib.League.Crud.Sort
Yesod.Contrib.League.Crud.TVarMap
other-modules: Yesod.Contrib.League.Crud.Resources
hs-source-dirs: .
default-language: Haskell2010
ghc-options: -Wall -fwarn-tabs
default-extensions: TemplateHaskell
ConstraintKinds
FlexibleContexts
FlexibleInstances
MultiParamTypeClasses
NoImplicitPrelude
OverloadedStrings
QuasiQuotes
StandaloneDeriving
TypeFamilies
ViewPatterns
build-depends: base >= 4 && < 5
, classy-prelude >= 0.11 && < 0.13
, containers >= 0.5 && < 0.6
, MissingH >= 1.3 && < 1.5
, monad-control >= 1.0 && < 1.1
, persistent >= 2.1 && < 2.6
, random >= 1.1 && < 1.2
, safe >= 0.3.9
, stm >= 2.4 && < 2.5
, uuid >= 1.3 && < 1.4
, yesod-core >= 1.4 && < 1.5
, yesod-form >= 1.4 && < 1.5
, yesod-persistent >= 1.4 && < 1.5