packages feed

quickcheck-instances-0.3.15: quickcheck-instances.cabal

Name:                quickcheck-instances
Version:             0.3.15
Synopsis:            Common quickcheck instances
Description:         QuickCheck instances.
                     .
                     The goal is to supply QuickCheck instances for
                     types provided by the Haskell Platform.
                     .
                     Since all of these instances are provided as
                     orphans, I recommend that you do not use this library
                     within another library module, so that you don't
                     impose these instances on down-stream consumers of
                     your code.
                     .
                     For information on writing a test-suite with Cabal
                     see <https://www.haskell.org/cabal/users-guide/developing-packages.html#test-suites>

License:             BSD3
License-file:        LICENSE
Author:              Antoine Latter <aslatter@gmail.com>
Maintainer:          Oleg Grenrus <oleg.grenrus@iki.fi>
Homepage:            https://github.com/phadej/qc-instances
Bug-reports:         https://github.com/phadej/qc-instances/issues
Copyright:           Copyright Antoine Latter, 2012-2014
Category:            Testing
Build-type:          Simple
Extra-source-files:  CHANGES
Cabal-version:       >=1.8
Tested-With:
  GHC==7.4.2,
  GHC==7.6.3,
  GHC==7.8.4,
  GHC==7.10.3,
  GHC==8.0.2,
  GHC==8.2.1

Source-repository head
  type:     git
  location: https://github.com/phadej/qc-instances.git

Library
  Exposed-modules:     Test.QuickCheck.Instances
  Hs-Source-Dirs:      src
  Build-depends:
    base       >=4.5  && <4.11,
    QuickCheck >=2.10 && <2.11,

    array                >=0.3     && <0.6,
    base-compat          >=0.9.3   && <0.10,
    bytestring           >=0.9     && <0.11,
    case-insensitive     >=1.2.0.4 && <1.3,
    containers           >=0.3     && <0.6,
    hashable             >=1.1.2.3 && <1.3,
    old-time             >=1.0     && <1.2,
    scientific           >=0.2     && <0.4,
    tagged               >=0.8.5   && <0.9,
    text                 >=0.7     && <1.3,
    time                 >=1.1     && <1.9,
    transformers         >=0.3     && <0.6,
    transformers-compat  >=0.4     && <0.6,
    unordered-containers >=0.2.1   && <0.3,
    uuid-types           >=1.0.3   && <1.1,
    vector               >=0.9     && <0.13

  if !impl(ghc >= 8.0)
    build-depends:
      semigroups ==0.18.*

  if !impl(ghc >= 7.10)
    build-depends:
      nats >=1 && <1.2

  Ghc-options:         -Wall

test-suite self-test
  type: exitcode-stdio-1.0
  main-is: Tests.hs
  hs-source-dirs: test
  build-depends:
    base,
    QuickCheck,
    quickcheck-instances,
    containers,
    tagged,
    uuid-types