File range-set-list.cabal of Package ghc-range-set-list
name: range-set-list
version: 0.1.2.0
x-revision: 1
synopsis: Memory efficient sets with ranges of elements.
description: Memory efficient sets with continuous ranges of discrete, bounded elements. List- and map-based implementations. Interface mimics 'Data.Set' where possible.
homepage: https://github.com/phadej/range-set-list#readme
bug-reports: https://github.com/phadej/range-set-list/issues
license: MIT
license-file: LICENSE
author: Oleg Grenrus <oleg.grenrus@iki.fi>
maintainer: Oleg Grenrus <oleg.grenrus@iki.fi>
category: Data
tested-with: GHC==7.4.2, GHC==7.6.3, GHC==7.8.4, GHC==7.10.2
build-type: Simple
cabal-version: >= 1.10
extra-source-files:
CHANGELOG.md
README.md
source-repository head
type: git
location: https://github.com/phadej/range-set-list
library
hs-source-dirs:
src
other-extensions: DeriveDataTypeable Safe
ghc-options: -Wall -fwarn-tabs
build-depends:
base >=4.5 && <4.11,
containers >=0.5.3 && <0.6,
semigroups >=0.16.2.2 && <0.19,
deepseq >=1.3.0.0 && <1.5,
hashable >=1.2.3.3 && <1.3
exposed-modules:
Data.RangeSet.Internal
Data.RangeSet.IntMap
Data.RangeSet.List
Data.RangeSet.Map
default-language: Haskell2010
test-suite test
type: exitcode-stdio-1.0
main-is: Tests.hs
hs-source-dirs:
tests
ghc-options: -Wall -fwarn-tabs
build-depends:
base,
containers,
semigroups,
deepseq,
hashable,
containers >=0.5 && <0.6,
tasty >=0.8 && <0.12,
tasty-quickcheck >=0.8 && <0.10,
range-set-list
other-modules:
IntMap
List
Map
SetAction
default-language: Haskell2010