File: weigh.cabal

package info (click to toggle)
haskell-weigh 0.0.17-1
  • links: PTS
  • area: main
  • in suites: sid, trixie
  • size: 92 kB
  • sloc: haskell: 601; makefile: 6
file content (40 lines) | stat: -rw-r--r-- 1,206 bytes parent folder | download
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
name:                weigh
version:             0.0.17
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:          chrisdone@fpcomplete.com
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
                     , ghc >= 8.2.1
                     , criterion-measurement
  default-language:    Haskell2010

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