packages feed

scotty-form-0.4.1.0: scotty-form.cabal

cabal-version: >=1.10
name: scotty-form
version: 0.4.1.0
synopsis: Html form validation using `ditto`
description: Formlet library for `scotty` using `lucid` and `ditto`
-- bug-reports:
license: MIT
license-file: LICENSE
author: goolord
maintainer: zacharyachurchill@gmail.com
-- copyright:
category: Web
build-type: Simple
extra-source-files: CHANGELOG.md

source-repository head
  type: git
  location: https://github.com/goolord/scotty-form.git

library
  exposed-modules:
    Web.Scotty.Form
    Web.Scotty.Trans.Form
  ghc-options: -Wall
  -- other-modules:
  -- other-extensions:
  build-depends:
      base >=4.12 && <5
    , text >=1.2.4 && <3.0
    , lucid >=2.9.12 && <3.0
    , scotty >=0.12 && <1
    , ditto >=0.4 && <=0.5
    , ditto-lucid >= 0.4 && <= 0.5
  hs-source-dirs: src
  default-language: Haskell2010