cabal-version: 1.12

-- This file has been generated from package.yaml by hpack version 0.31.2.
--
-- see: https://github.com/sol/hpack
--
-- hash: a07ff46d2ef6defe85f666d93492fcc0cba3c4ab46d08ee7d34dcee21a1362de

name:           sets
version:        0.0.6.2
x-revision: 2
synopsis:       Ducktyped set interface for Haskell containers.
description:    Please see the README on Github at <https://github.com/athanclark/sets#readme>
category:       Data
homepage:       https://github.com/athanclark/sets#readme
bug-reports:    https://github.com/athanclark/sets/issues
author:         Athan Clark
maintainer:     athan.clark@gmail.com
copyright:      2018 Athan Clark
license:        BSD3
license-file:   LICENSE
build-type:     Simple
extra-source-files:
    README.md

source-repository head
  type: git
  location: https://github.com/athanclark/sets

library
  build-depends: mtl <2.3

  exposed-modules:
      Data.Set.Class
      Data.Set.Ordered.Many
      Data.Set.Ordered.Many.With
      Data.Set.Ordered.Unique
      Data.Set.Ordered.Unique.Finite
      Data.Set.Ordered.Unique.With
      Data.Set.Unordered.Many
      Data.Set.Unordered.Unique
  other-modules:
      Paths_sets
  hs-source-dirs:
      src
  ghc-options: -Wall
  build-depends:
      QuickCheck >=2.9.2
    , base >=4.11 && <5.0
    , bytestring
    , commutative >=0.0.2
    , composition
    , containers
    , contravariant
    , hashable
    , keys
    , mtl
    , semigroupoids
    , semigroups
    , transformers
    , transformers-base
    , unordered-containers
    , vector
    , witherable < 0.5
  default-language: Haskell2010

test-suite sets-test
  type: exitcode-stdio-1.0
  main-is: Main.hs
  other-modules:
      Data.SetSpec
      Paths_sets
  hs-source-dirs:
      test
  ghc-options: -Wall -threaded -rtsopts -Wall -with-rtsopts=-N
  build-depends:
      QuickCheck
    , base >=4.11 && <5.0
    , bytestring
    , commutative
    , composition
    , containers
    , contravariant
    , hashable
    , keys
    , mtl
    , quickcheck-instances
    , semigroupoids
    , semigroups
    , sets
    , tasty
    , tasty-hunit
    , tasty-quickcheck
    , transformers
    , transformers-base
    , unordered-containers
    , vector
    , witherable < 0.5
  default-language: Haskell2010

benchmark sets-bench
  type: exitcode-stdio-1.0
  main-is: Profile.hs
  other-modules:
      Data.IntMap.Data
      Data.IntSet.Data
      Data.Map.Data
      Data.Set.Data
      Data.Set.Ordered.Many.Data
      Data.Set.Unordered.Many.Data
      Data.Set.Unordered.Unique.Data
      Paths_sets
  hs-source-dirs:
      bench
  ghc-options: -Wall -threaded -rtsopts -Wall -with-rtsopts=-N
  build-depends:
      QuickCheck >=2.9.2
    , base >=4.11 && <5.0
    , bytestring
    , commutative
    , composition
    , containers
    , contravariant
    , criterion
    , hashable
    , keys
    , mtl
    , semigroupoids
    , semigroups
    , sets
    , transformers
    , transformers-base
    , unordered-containers
    , vector
    , witherable < 0.5
  default-language: Haskell2010