-
Notifications
You must be signed in to change notification settings - Fork 0
/
streaming-histogram.cabal
58 lines (47 loc) · 1.63 KB
/
streaming-histogram.cabal
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
-- 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: [email protected]
-- 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
, 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
, 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
, streaming-histogram
, criterion >= 1.0
hs-source-dirs: tests