packages feed

tuples-0.1.0.0: tuples.cabal

cabal-version: 2.2
name: tuples
version: 0.1.0.0
synopsis: Small monomorphic tuples
description:
  This library provides small tuples where all the elements
  are the same type. The elements always unpack into the
  data constructor. This can be helpful when the tuple type
  is itself nested inside of another data constructor.
homepage: https://github.com/andrewthad/tuples
bug-reports: https://github.com/andrewthad/tuples/issues
license: BSD-3-Clause
license-file: LICENSE
author: Andrew Martin
maintainer: andrew.thaddeus@gmail.com
copyright: 2019 Andrew Martin
category: Data
extra-source-files: CHANGELOG.md

library
  exposed-modules: Data.Tuple.Types
  build-depends:
    , base >=4.11 && <5
    , primitive >=0.6.4 && <0.8
  hs-source-dirs: src
  ghc-options: -Wall -O2
  default-language: Haskell2010
test-suite test
  type: exitcode-stdio-1.0
  hs-source-dirs: test
  main-is: Main.hs
  build-depends:
    , base
    , tuples
    , primitive
    , quickcheck-classes
    , QuickCheck
    , tasty
    , tasty-quickcheck
  ghc-options: -Wall -O2
  default-language: Haskell2010