packages feed

gray-extended-1.5.9: gray-extended.cabal

cabal-version:      2.4
name:               gray-extended
version:            1.5.9
synopsis:           Gray encoding schemes
description:
  Please see the README on GitHub at <https://github.com/mhwombat/gray-extended#readme>
homepage:           https://github.com/mhwombat/gray-extended
bug-reports:        https://github.com/mhwombat/gray-extended/issues
license:            BSD-3-Clause
license-file:       LICENSE
author:             Amy de Buitléir
maintainer:         amy@nualeargais.ie
copyright:          2010-2021 Amy de Buitléir
category:           Math
extra-source-files:
  CHANGELOG.md
  README.md

source-repository head
  type:     git
  location: https://github.com/mhwombat/gray-extended

common common-stuff
  default-language: Haskell2010

library
  import:          common-stuff
  hs-source-dirs:  src
  exposed-modules: Codec.Gray
  other-modules:   Paths_gray_extended
  autogen-modules: Paths_gray_extended
  ghc-options:     -Wall -Wunused-packages
  build-depends:   base >=4.7 && <5

test-suite gray-extended-test
  import:         common-stuff
  type:           exitcode-stdio-1.0
  hs-source-dirs: test
  main-is:        TestMain.hs
  other-modules:  Codec.GrayQC
  ghc-options:
    -threaded -rtsopts -with-rtsopts=-N -Wall -Wunused-packages
  build-depends:
    , base
    , gray-extended
    , QuickCheck
    , test-framework
    , test-framework-quickcheck2