packages feed

traverse-with-class-0.2: traverse-with-class.cabal

-- Initial traverse-with-class.cabal generated by cabal init.  For further 
-- documentation, see http://haskell.org/cabal/users-guide/

name:                traverse-with-class
version:             0.2
synopsis:            Generic applicative traversals
description:         This is a generic programming library in the spirit of
                     \"Scrap your boilerplate with class\", but with several
                     improvements — most notably, it's based on the @gtraverse@
                     function instead of @gfoldl@.

                     @gtraverse@ is equivalent in power to @gfoldl@, but lets
                     you more easily write non-standard views of the data type.
license:             MIT
license-file:        LICENSE
author:              Roman Cheplyaka
maintainer:          Roman Cheplyaka <roma@ro-che.info>
-- copyright:           
category:            Data
build-type:          Simple
cabal-version:       >=1.10
extra-source-files:
  README.md
  CHANGES.md

library
  exposed-modules:     Data.Generics.Traversable
                       Data.Generics.Traversable.TH
                       Data.Generics.Traversable.Zipper
  other-modules:
                       Data.Generics.Traversable.Core
                       Data.Generics.Traversable.Instances
  build-depends:       base == 4.*, transformers, template-haskell
  default-language:    Haskell2010
  other-extensions:    TemplateHaskell