packages feed

ditto-0.4.1: ditto.cabal

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 <zacharyachurchill@gmail.com>
maintainer: Zachary Churchill <zacharyachurchill@gmail.com>
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