cabal-version: 2.2 name: find version: 0 synopsis: Generic search algorithms description: Generic search algorithms, including interpolation search. license: BSD-3-Clause license-file: LICENSE author: davean maintainer: oss@xkcd.com copyright: Copyright (C) 2020 davean category: Data, Search build-type: Simple extra-source-files: CHANGELOG.md common deps default-language: Haskell2010 build-depends: base >=4.13 && <4.14 library import: deps hs-source-dirs: src ghc-options: -O2 exposed-modules: Data.Find.Linear Data.Find.Interpolation test-suite find-tests import: deps type: exitcode-stdio-1.0 main-is: Tests.hs hs-source-dirs: tests build-depends: find , tasty , tasty-quickcheck , vector