packages feed

generic-arbitrary-0.1.0: generic-arbitrary.cabal

name:                generic-arbitrary
version:             0.1.0
synopsis:            Generic implementation for QuickCheck's Arbitrary
description:
    Generic implementations of methods of the 'Arbitrary' class from the
    QuickCheck library. The approach taken here can lead to diverging instances
    for recursive types but is safe for non-recursive ones and guarantees
    flat distribution for constructors of sum-types.

license:             MIT
license-file:        LICENSE
author:              Typeable.io contributors
maintainer:          makeit@typeable.io
category:            Generic
build-type:          Simple
extra-source-files:  CHANGELOG.md
cabal-version:       >=1.22

library
  exposed-modules:     Test.QuickCheck.Arbitrary.Generic
  build-depends:       QuickCheck >= 2.8, base >=4.8 && <5
  hs-source-dirs:      src
  default-language:    Haskell2010