bloomfilter-1.0: bloomfilter.cabal
name: bloomfilter
version: 1.0
license: BSD3
license-file: LICENSE
author: Bryan O'Sullivan <bos@serpentine.com>
maintainer: Bryan O'Sullivan <bos@serpentine.com>
homepage: http://www.serpentine.com/software/bloomfilter
description: Pure and impure Bloom Filter implementations.
synopsis: Pure and impure Bloom Filter implementations.
category: Data
stability: provisional
build-type: Simple
cabal-version: >= 1.2
tested-with: GHC ==6.8.2
extra-source-files: README cbits/lookup3.c
examples/Makefile examples/SpellChecker.hs examples/Words.hs
flag bytestring-in-base
flag split-base
library
if flag(bytestring-in-base)
-- bytestring was in base-2.0 and 2.1.1
build-depends: base >= 2.0 && < 2.2
cpp-options: -DBYTESTRING_IN_BASE
else
-- in base 1.0 and 3.0 bytestring is a separate package
build-depends: base < 2.0 || >= 3, bytestring >= 0.9
if flag(split-base)
build-depends: base >= 3.0, containers, array
else
build-depends: base < 3.0
exposed-modules: Data.BloomFilter
Data.BloomFilter.Easy
Data.BloomFilter.Hash
other-modules: Data.BloomFilter.Util
c-sources: cbits/lookup3.c
ghc-options: -O2 -Wall -fliberate-case-threshold=1000
cc-options: -O3