-- Initial streaming-histogram.cabal generated by cabal init. For further -- documentation, see http://haskell.org/cabal/users-guide/ name: streaming-histogram version: 0.1.0.0 -- synopsis: description: Inefficient implementation of a lossy online histogram algorithm. See "Numeric.StreamingHistogram" for more. license: Apache-2.0 license-file: LICENSE author: Tom Hunger maintainer: tehunger@gmail.com -- copyright: -- category: build-type: Simple -- extra-source-files: cabal-version: >=1.10 source-repository head type: git location: https://github.com/teh/streaming-histogram library exposed-modules: Numeric.StreamingHistogram , Numeric.StreamingHistogram.Internal -- other-modules: -- other-extensions: build-depends: base >= 4.0 && < 5 , containers , criterion >= 1.0 hs-source-dirs: src ghc-options: -Wall default-language: Haskell2010 test-suite streaminghist-tests type: exitcode-stdio-1.0 main-is: TestStreamingHist.hs hs-source-dirs: tests build-depends: base >= 4.0 && < 5 , streaming-histogram , tasty , tasty-hunit , tasty-quickcheck , containers benchmark streaminghist-bench type: exitcode-stdio-1.0 main-is: BenchStreamingHist.hs build-depends: base >= 4.0 && < 5 , streaming-histogram , criterion >= 0.8 hs-source-dirs: tests