cabal-version: 1.12

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

name:           subsets
version:        0.1.0.1
synopsis:       Iterate over subsets of arbitrary supersets efficiently
description:    Please see the README on GitHub at <https://github.com/felixlinker/subsets#readme>
category:       Set Theory
homepage:       https://github.com/felixlinker/subsets#readme
bug-reports:    https://github.com/felixlinker/subsets/issues
author:         Felix Linker
maintainer:     linkerfelix@gmail.com
copyright:      2019 Felix Linker
license:        MIT
license-file:   LICENSE
build-type:     Simple
extra-source-files:
    README.md
    ChangeLog.md

source-repository head
  type: git
  location: https://github.com/felixlinker/subsets

library
  exposed-modules:
      Data.Set.Subsets
      Data.Set.Subsets.BankersSequence
  other-modules:
      Paths_subsets
  hs-source-dirs:
      src
  build-depends:
      base >=4.7 && <5
    , containers >=0.5.11.0
  default-language: Haskell2010

test-suite subsets-test
  type: exitcode-stdio-1.0
  main-is: Spec.hs
  other-modules:
      BankersSequenceTest
      SubsetsTest
      Paths_subsets
  hs-source-dirs:
      test
  ghc-options: -threaded -rtsopts -with-rtsopts=-N
  build-depends:
      QuickCheck >=2.12.6.1
    , base >=4.7 && <5
    , containers >=0.5.11.0
    , subsets
  default-language: Haskell2010