Name:     digestive-functors
Version:  0.8.4.2
Synopsis: A practical formlet library
x-revision: 3
Description:
    Digestive functors is a library inspired by formlets:
    .
     
    .
    It is intended to be an improvement of the Haskell formlets library, with as
    main advantages:
    .
    * better error handling, so a web page can display input errors right next
      to the corresponding fields;
    .
    * the ability to easily add @\@ elements;
    .
    * separation of the validation model and the HTML output.
    .
    Tutorial:
    
Homepage:      http://github.com/jaspervdj/digestive-functors
License:       BSD3
License-file:  LICENSE
Author:        Jasper Van der Jeugt 
Maintainer:    Jasper Van der Jeugt 
Category:      Web
Build-type:    Simple
Cabal-version: >= 1.10
Extra-source-files:
  CHANGELOG
Library
  Default-language:   Haskell2010
  Hs-source-dirs:     src
  Ghc-options:        -Wall -fwarn-tabs
  Default-extensions: CPP
  Exposed-modules:
    Text.Digestive
    Text.Digestive.Form
    Text.Digestive.Form.Encoding
    Text.Digestive.Form.List
    Text.Digestive.Ref
    Text.Digestive.Types
    Text.Digestive.Util
    Text.Digestive.View
    Text.Digestive.Form.Internal
    Text.Digestive.Form.Internal.Field
  Build-depends:
    base                  >= 4       && < 5,
    bytestring            >= 0.9     && < 0.13,
    containers            >= 0.3     && < 0.9,
    mtl                   >= 1.1.0.0 && < 3,
    old-locale            >= 1.0     && < 1.1,
    semigroups            >= 0.16    && < 0.21,
    text                  >= 0.10    && < 2.2,
    time                  >= 1.4     && < 1.15
Test-suite digestive-functors-tests
  Default-language: Haskell2010
  Type:             exitcode-stdio-1.0
  Hs-source-dirs:   src tests
  Main-is:          TestSuite.hs
  Ghc-options:      -Wall
  Other-modules:
    Text.Digestive.Field.QTests
    Text.Digestive.Field.Tests
    Text.Digestive.Form
    Text.Digestive.Form.Encoding
    Text.Digestive.Form.Encoding.QTests
    Text.Digestive.Form.Encoding.Tests
    Text.Digestive.Form.Internal
    Text.Digestive.Form.Internal.Field
    Text.Digestive.Form.List
    Text.Digestive.Form.List.QTests
    Text.Digestive.Form.QTests
    Text.Digestive.Ref
    Text.Digestive.Tests.Fixtures
    Text.Digestive.Types
    Text.Digestive.Types.QTests
    Text.Digestive.Util
    Text.Digestive.View
    Text.Digestive.View.Tests
  Build-depends:
    HUnit                      >= 1.2 && < 1.7,
    QuickCheck                 >= 2.5 && < 2.16,
    test-framework             >= 0.4 && < 0.9,
    test-framework-hunit       >= 0.3 && < 0.4,
    test-framework-quickcheck2 >= 0.3 && < 0.4,
    -- Copied from regular dependencies:
    base                  >= 4       && < 5,
    bytestring            >= 0.9     && < 0.13,
    containers            >= 0.3     && < 0.9,
    mtl                   >= 1.1.0.0 && < 3,
    old-locale            >= 1.0     && < 1.1,
    semigroups            >= 0.16    && < 0.21,
    text                  >= 0.10    && < 2.2,
    time                  >= 1.4     && < 1.15
Source-repository head
  Type:     git
  Location: https://github.com/jaspervdj/digestive-functors