packages feed

cuckoo-filter-0.2.0.2: cuckoo-filter.cabal

cabal-version: 1.12

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

name:           cuckoo-filter
version:        0.2.0.2
synopsis:       Pure and impure Cuckoo Filter
description:    Please see the README on Github at <https://github.com/ChrisCoffey/cuckoo-filter#readme>
category:       Data
homepage:       https://github.com/ChrisCoffey/cuckoo-filter#readme
bug-reports:    https://github.com/ChrisCoffey/cuckoo-filter/issues
author:         Chris Coffey
maintainer:     chris@foldl.io
copyright:      2018 Chris Coffey
license:        MIT
license-file:   LICENSE
build-type:     Simple
extra-source-files:
    README.md
    ChangeLog.md

source-repository head
  type: git
  location: https://github.com/ChrisCoffey/cuckoo-filter

library
  exposed-modules:
      Data.CuckooFilter
      Data.CuckooFilter.Internal
      Data.CuckooFilter.Mutable
      Data.CuckooFilter.Pure
      Data.CuckooFilter.Tutorial
  other-modules:
      Paths_cuckoo_filter
  hs-source-dirs:
      src
  default-extensions: NamedFieldPuns DerivingStrategies ScopedTypeVariables DeriveGeneric MultiParamTypeClasses FunctionalDependencies FlexibleContexts FlexibleInstances
  ghc-options: -O2
  build-depends:
      aeson
    , array
    , base >=4.7 && <5
    , bytestring
    , cereal
    , containers
    , hashable
    , time
  default-language: Haskell2010

executable benchmarks
  main-is: Benchmarks.hs
  other-modules:
      Benchmarks.Simple, Benchmarks.SpellChecker
  hs-source-dirs:
      benchmarks
  default-extensions: NamedFieldPuns DerivingStrategies ScopedTypeVariables DeriveGeneric MultiParamTypeClasses FunctionalDependencies FlexibleContexts FlexibleInstances
  ghc-options: -threaded -rtsopts -with-rtsopts=-N -O2
  build-depends:
      aeson
    , array
    , base >=4.7 && <5
    , bytestring
    , cereal
    , containers
    , criterion
    , cuckoo-filter
    , hashable
    , random
    , time
  default-language: Haskell2010

test-suite cuckoo-filter-test
  type: exitcode-stdio-1.0
  main-is: Spec.hs
  other-modules:
      Paths_cuckoo_filter
  hs-source-dirs:
      test
  default-extensions: NamedFieldPuns DerivingStrategies ScopedTypeVariables DeriveGeneric MultiParamTypeClasses FunctionalDependencies FlexibleContexts FlexibleInstances
  ghc-options: -threaded -rtsopts -with-rtsopts=-N
  build-depends:
      QuickCheck
    , aeson
    , array
    , base >=4.7 && <5
    , bytestring
    , cereal
    , containers
    , cuckoo-filter
    , hashable
    , tasty
    , tasty-hunit
    , tasty-quickcheck
    , time
  default-language: Haskell2010