cabal-version: 1.18 name: forma version: 1.2.0 x-revision: 2 license: BSD3 license-file: LICENSE.md maintainer: Mark Karpov author: Mark Karpov tested-with: ghc ==8.8.4 ghc ==8.10.5 ghc ==9.0.1 homepage: https://github.com/mrkkrp/forma bug-reports: https://github.com/mrkkrp/forma/issues synopsis: Parse and validate forms in JSON format description: Parse and validate forms in JSON format. category: Web build-type: Simple extra-doc-files: CHANGELOG.md README.md source-repository head type: git location: https://github.com/mrkkrp/forma.git flag dev description: Turn on development settings. default: False manual: True library exposed-modules: Web.Forma default-language: Haskell2010 build-depends: aeson >=2 && <3, base >=4.15 && <5, containers >=0.5 && <0.7, mtl >=2 && <3, text >=0.2 && <2.2 if flag(dev) ghc-options: -Wall -Werror else ghc-options: -O2 -Wall if flag(dev) ghc-options: -Wcompat -Wincomplete-record-updates -Wincomplete-uni-patterns -Wnoncanonical-monad-instances test-suite tests type: exitcode-stdio-1.0 main-is: Main.hs hs-source-dirs: tests default-language: Haskell2010 build-depends: aeson >=2 && <3, base >=4.15 && <5, containers >=0.5 && <0.7, forma, hspec >=2 && <3, mtl >=2 && <3, text >=0.2 && <2.2 if flag(dev) ghc-options: -Wall -Werror else ghc-options: -O2 -Wall