File: bloomfilter.cabal

package info (click to toggle)
haskell-bloomfilter 2.0.1.2-3
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 200 kB
  • sloc: ansic: 852; haskell: 709; makefile: 13
file content (69 lines) | stat: -rw-r--r-- 1,965 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
cabal-version:   3.0
name:            bloomfilter
version:         2.0.1.2
license:         BSD-3-Clause
license-file:    LICENSE
author:          Bryan O'Sullivan <bos@serpentine.com>
maintainer:      Joey Hess <id@joeyh.name>
homepage:        https://github.com/haskell-pkg-janitors/bloomfilter
bug-reports:     https://github.com/haskell-pkg-janitors/bloomfilter/issues
description:     Pure and impure Bloom Filter implementations.
synopsis:        Pure and impure Bloom Filter implementations.
category:        Data
stability:       provisional
build-type:      Simple
extra-source-files: README.markdown CHANGELOG.md
                 cbits/lookup3.c cbits/lookup3.h
                 examples/Makefile examples/SpellChecker.hs examples/Words.hs
tested-with:
  GHC == 9.2.1
  GHC == 9.0.1
  GHC == 8.10.7
  GHC == 8.8.4
  GHC == 8.6.5
  GHC == 8.4.4
  GHC == 8.2.2
  GHC == 8.0.2
  GHC == 7.10.3
  GHC == 7.8.4
  GHC == 7.6.3
  GHC == 7.4.2

library
  default-language: Haskell2010
  build-depends:
    array,
    base       >= 4.5 && < 5,
    bytestring >= 0.9,
    deepseq
  exposed-modules:  Data.BloomFilter
                    Data.BloomFilter.Easy
                    Data.BloomFilter.Mutable
                    Data.BloomFilter.Hash
  other-modules:    Data.BloomFilter.Array
                    Data.BloomFilter.Mutable.Internal
                    Data.BloomFilter.Util
  c-sources:        cbits/lookup3.c
  ghc-options:      -O2 -Wall
  include-dirs:     cbits
  includes:         lookup3.h
  install-includes: lookup3.h

test-suite tests
  default-language: Haskell2010
  type:           exitcode-stdio-1.0
  hs-source-dirs: tests
  main-is:        QC.hs
  other-modules:  QCSupport
  build-depends:
    QuickCheck >= 2.5,
    base >= 4.4 && < 5,
    bloomfilter,
    bytestring,
    random,
    test-framework,
    test-framework-quickcheck2

source-repository head
  type:     git
  location: git://github.com/haskell-pkg-janitors/bloomfilter.git