-- Initial htlset.cabal generated by cabal init.  For further 
-- documentation, see http://haskell.org/cabal/users-guide/

name:                htssets
version:             0.1.0.0
synopsis:            Heterogenous Sets
description:         
    HtsSet is a Heterogenous Set wich can provide storing values with different type.
homepage:            https://github.com/kelemzol/htlset
license:             BSD3
license-file:        LICENSE
author:              Zoltan Kelemen
maintainer:          kelemzol@elte.hu
-- copyright:           
category:            Data
build-type:          Simple
extra-source-files:  ChangeLog.md
cabal-version:       >=1.10

library
  exposed-modules:     Data.HtsSet
                     , Data.HtsCSet
  -- other-modules:       
  other-extensions:    ExistentialQuantification
                     , ScopedTypeVariables
                     , TypeOperators
                     , ConstraintKinds
  build-depends:       base >=4.12 && <4.13
                     , containers >=0.6 && <0.7
  hs-source-dirs:      src
  default-language:    Haskell2010