Name: ixset Version: 1.0.3 x-revision: 1 Synopsis: Efficient relational queries on Haskell sets. Description: Create and query sets that are indexed by multiple indices. License: BSD3 License-file: COPYING Author: Happstack team, HAppS LLC Maintainer: Happstack team homepage: http://happstack.com Category: Data Structures Build-Type: Simple Cabal-Version: >= 1.10 source-repository head type: darcs subdir: ixset location: http://patch-tag.com/r/mae/happstack flag base4 Library -- GHC is pickier about impredicative polymorphism -- Also there aren't Typeable1 build-depends: base <4.9 Default-Language: Haskell2010 if flag(base4) Build-Depends: base >=4 && < 5, syb else Build-Depends: base < 4 if impl(ghc >= 6.12.1) Build-Depends: syb-with-class >= 0.6.1 else Build-Depends: syb-with-class < 0.6.1 Build-Depends: containers, safecopy, template-haskell hs-source-dirs: src Exposed-modules: Data.IxSet Data.IxSet.Ix if impl(ghc >= 6.12) ghc-options: -Wall -fno-warn-unused-do-bind else ghc-options: -Wall GHC-Prof-Options: -auto-all Test-Suite test-ixset Default-Language: Haskell2010 type: detailed-0.9 test-module: Test other-modules: Data.IxSet.Tests hs-source-dirs: tests build-depends: base, Cabal >= 1.10, containers, HUnit, ixset, QuickCheck, random