packages feed

rset-1.0.0: rset.cabal

name:                rset
version:             1.0.0
synopsis:            Range set
description:         Data structure that stores a set of ranges. It provides an
                     API similar to the Data.Set module. Types stored in the
                     data structure have to be instances of Eq, Ord and Enum
                     typeclasses.
homepage:            https://github.com/lovasko/rset
license:             OtherLicense
license-file:        LICENSE
author:              Daniel Lovasko <daniel.lovasko@gmail.com>
maintainer:          Daniel Lovasko <daniel.lovasko@gmail.com>
copyright:           2017 Daniel Lovasko
category:            Data
build-type:          Simple
cabal-version:       >=1.10

library
  hs-source-dirs:      src
  exposed-modules:     Data.Set.Range
  other-modules:       Data.Set.Range.Combine
                     , Data.Set.Range.General
                     , Data.Set.Range.List
                     , Data.Set.Range.Modify
                     , Data.Set.Range.Overlap
                     , Data.Set.Range.Query
                     , Data.Set.Range.Types
  build-depends:       base >= 4.7 && < 5
                     , safe
  default-language:    Haskell2010

test-suite rset-test
  type:                exitcode-stdio-1.0
  hs-source-dirs:      test
  main-is:             Prop.hs
  build-depends:       base >= 4.7 && < 5
                     , QuickCheck
                     , rset
                     , safe
  ghc-options:         -threaded -rtsopts -with-rtsopts=-N
  default-language:    Haskell2010

source-repository head
  type:     git
  location: https://github.com/lovasko/rset