-
Notifications
You must be signed in to change notification settings - Fork 1
/
ditto.cabal
42 lines (40 loc) · 1.1 KB
/
ditto.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
cabal-version: 3.0
name: ditto
version: 0.4.1
synopsis: ditto is a type-safe HTML form generation and validation library
description:
ditto follows in the footsteps of formlets and
digestive-functors <= 0.2. It provides a
type-safe and composable method for generating
an HTML form that includes validation.
license: BSD-3-Clause
license-file: LICENSE
author: Zachary Churchill <[email protected]>
maintainer: Zachary Churchill <[email protected]>
copyright:
2012 Jeremy Shaw, Jasper Van der Jeugt, SeeReason Partners LLC,
2019 Zachary Churchill
category: Web
build-type: Simple
source-repository head
type: git
location: https://github.com/goolord/ditto.git
library
ghc-options: -Wall
exposed-modules:
Ditto
Ditto.Core
Ditto.Types
Ditto.Backend
Ditto.Proof
Ditto.Generalized.Named
Ditto.Generalized.Unnamed
other-modules:
Ditto.Generalized.Internal
build-depends:
base >= 4 && < 5
, containers >= 0.4 && < 1.0
, mtl >= 2.0 && < 3.0
, text >= 0.11 && < 3.0
hs-source-dirs: src
default-language: Haskell2010