packages feed

hashable-generics-1.1.1: hashable-generics.cabal

name:                hashable-generics
version:             1.1.1
synopsis:            Automatically generates Hashable instances with GHC.Generics.
description:
    This package provides a "GHC.Generics"-based 'Data.Hashable.Generic.gHashWithSalt'
    function which can be used for providing a 'hashWithSalt' implementation.
    See the documentation for the 'gHashWithSalt' function in the
    "Data.Hashable.Generic" module to get start.
    .
    This package is heavily inspired by deepseq-generics, which you may also find
    useful.
homepage:            https//github.com/wowus/hashable-generics
license:             BSD3
license-file:        LICENSE
author:              Clark Gaebel
copyright:           2012, Clark Gaebel
maintainer:          cgaebel@uwaterloo.ca
category:            Data
build-type:          Simple
cabal-version:       >=1.8
tested-with:         GHC >=7.6

source-repository head
    type: git
    location: https://github.com/wowus/hashable-generics.git

library
    exposed-modules:     Data.Hashable.Generic
    build-depends:       base >=4.5 && <4.7
                       , hashable ==1.1.*

test-suite tests
    type: exitcode-stdio-1.0
    main-is: Suite.hs
    hs-source-dirs: test
    build-depends:       base
                       , hashable
                       , test-framework
                       , test-framework-quickcheck2
                       , QuickCheck
                       , hashable-generics