packages feed

sets-0.0.4.1: sets.cabal

Name:                   sets
Version:                0.0.4.1
Author:                 Athan Clark <athan.clark@gmail.com>
Maintainer:             Athan Clark <athan.clark@gmail.com>
License:                MIT
License-File:           LICENSE
Synopsis:               Various set implementations in Haskell
Description:            This also includes overloaded functions for common set operations. See @Data.Set.Class@.
Cabal-Version:          >= 1.10
Build-Type:             Simple
Category:               Data, Math

Library
  Default-Language:     Haskell2010
  HS-Source-Dirs:       src
  GHC-Options:          -Wall
  Exposed-Modules:      Data.Set.Class
                        Data.Set.Unordered.Unique
                        Data.Set.Unordered.Many
                        Data.Set.Ordered.Unique
                        Data.Set.Ordered.Unique.With
                        Data.Set.Ordered.Unique.Finite
                        Data.Set.Ordered.Many
                        Data.Set.Ordered.Many.With
  Build-Depends:        base >= 4.6 && < 5
                      , containers
                      , unordered-containers
                      , hashable
                      , commutative
                      , contravariant
                      , discrimination
                      , invariant
                      , witherable

Test-Suite spec
  Type:                 exitcode-stdio-1.0
  Default-Language:     Haskell2010
  Hs-Source-Dirs:       src
                      , test
  Ghc-Options:          -Wall
  Main-Is:              Main.hs
  Build-Depends:        base
                      , tasty
                      , tasty-quickcheck
                      , tasty-hunit
                      , QuickCheck
                      , quickcheck-instances
                      , containers
                      , unordered-containers
                      , hashable
                      , commutative
                      , contravariant
                      , discrimination
                      , invariant
                      , witherable

Source-Repository head
  Type:                 git
  Location:             https://github.com/athanclark/sets.git