packages feed

applicative-fail-0.0.2: applicative-fail.cabal

name:                applicative-fail
version:             0.0.2
synopsis:            Applicative functor which collects all your fails

description: Applicative functor to perform parse-like actions and
             collect wanrings/failures

license:             BSD3
license-file:        LICENSE
author:              Aleksey Uimanov
maintainer:          s9gf4ult@gmail.com

category:            Control
build-type:          Simple

cabal-version:       >=1.10

extra-source-files:  README.md

homepage: https://bitbucket.org/s9gf4ult/applicative-fail
source-repository head
  type: git
  location: git@bitbucket.org:s9gf4ult/applicative-fail.git

library
  default-language:    Haskell2010
  hs-source-dirs:      src

  default-extensions:  DeriveDataTypeable
                     , DeriveFoldable
                     , DeriveFunctor
                     , DeriveGeneric
                     , DeriveTraversable

  build-depends:       base >=4.6 && <4.8
                     , bifunctors

  exposed-modules:     Control.Applicative.Fail

  ghc-options: -Wall