-- This file has been generated from package.yaml by hpack version 0.20.0.
--
-- see: https://github.com/sol/hpack
--
-- hash: d3488e3bbd241be936c063bb8a6f1812d5ee36f8669c470cfe6c7218beb3d490

name:           bloom
version:        0.0.0
synopsis:       Implementation of Stable Bloom Filter for unbounded streams.
description:    bloom is a new Haskeleton package.
category:       Other
homepage:       https://github.com/asoltysik/haskell-bloom-streaming#readme
bug-reports:    https://github.com/asoltysik/haskell-bloom-streaming/issues
maintainer:     Andrzej Sołtysik
license:        MIT
license-file:   LICENSE
build-type:     Simple
cabal-version:  >= 1.10

extra-source-files:
    CHANGELOG.md
    LICENSE.md
    package.yaml
    README.md
    stack.yaml

source-repository head
  type: git
  location: https://github.com/asoltysik/haskell-bloom-streaming

library
  hs-source-dirs:
      library
  ghc-options: -Wall
  build-depends:
      Dish
    , base <5
    , cereal
    , mtl
    , random
    , vector
  exposed-modules:
      Bloom
      StableBloomFilter
  other-modules:
      Internal.BitVector
  default-language: Haskell2010

executable bloom
  main-is: Main.hs
  hs-source-dirs:
      executable
  ghc-options: -Wall -rtsopts -threaded -with-rtsopts=-N
  build-depends:
      base
    , bloom
  other-modules:
      Paths_bloom
  default-language: Haskell2010

test-suite boom-test-suite
  type: exitcode-stdio-1.0
  main-is: Main.hs
  hs-source-dirs:
      test-suite
  ghc-options: -Wall -rtsopts -threaded -with-rtsopts=-N
  build-depends:
      base
    , bloom
    , tasty
    , tasty-hspec
  other-modules:
      Paths_bloom
  default-language: Haskell2010

benchmark bloom-benchmarks
  type: exitcode-stdio-1.0
  main-is: Main.hs
  hs-source-dirs:
      benchmark
  ghc-options: -Wall -rtsopts -threaded -with-rtsopts=-N
  build-depends:
      base
    , bloom
    , bloomfilter
    , criterion
  other-modules:
      Paths_bloom
  default-language: Haskell2010