-
Notifications
You must be signed in to change notification settings - Fork 16
/
weigh.cabal
41 lines (39 loc) · 1.19 KB
/
weigh.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
name: weigh
version: 0.0.18
synopsis: Measure allocations of a Haskell functions/values
description: Please see README.md
homepage: https://github.com/fpco/weigh#readme
license: BSD3
license-file: LICENSE
author: Chris Done
maintainer: [email protected]
copyright: FP Complete
category: Web
build-type: Simple
extra-source-files: README.md
CHANGELOG
cabal-version: >=1.10
library
hs-source-dirs: src
ghc-options: -Wall -O2
exposed-modules: Weigh
other-modules: Weigh.GHCStats
build-depends: base >= 4.7 && < 5
, process
, deepseq
, mtl
, split
, temporary
, criterion-measurement
default-language: Haskell2010
if impl(ghc < 8.2.1)
buildable: False
test-suite weigh-test
default-language: Haskell2010
type: exitcode-stdio-1.0
hs-source-dirs: src/test
ghc-options: -O2 -Wall
main-is: Main.hs
build-depends: base
, weigh
, deepseq