packages feed

refcount-0.1.1: refcount.cabal

name:               refcount
version:            0.1.1
synopsis:           Container with element counts
category:           Data
license:            MIT
author:             Ben Foppa
stability:          Experimental
homepage:           https://github.com/RobotGymnast/refcount
maintainer:         benjamin.foppa@gmail.com
build-type:         Simple
cabal-version:      >= 1.9.2

source-repository head
  type: git
  location: https://github.com/RobotGymnast/refcount.git

library
    hs-source-dirs:   .
    ghc-options:      -Wall
    exposed-modules:  Data.Refcount

    build-depends: base == 4.*
                 , hashable == 1.2.*
                 , unordered-containers == 0.2.*
                 , QuickCheck >= 2.6 && < 2.8

test-suite Tests
    type:           exitcode-stdio-1.0
    hs-source-dirs: . test
    main-is:        TestMain.hs
    GHC-Options:    -Wall -fno-warn-missing-signatures

    build-depends : base
                  , hashable
                  , refcount
                  , HUnit == 1.2.*
                  , QuickCheck
                  , test-framework-quickcheck2 == 0.3.*
                  , test-framework-hunit == 0.3.*
                  , test-framework-th
                  , test-framework
                  , unordered-containers
                  , Cabal