summaryrefslogtreecommitdiff
path: root/ghc-prof-reader.cabal
blob: ee2bae2d9bf9b3417be8a71bbd00680a0aadc1a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
cabal-version:       >=1.10
name:                ghc-prof-reader
synopsis:            Tree traversal app for GHC profiling output
version:             0.0.1.0
license:             MIT
author:              Tom Smeding
maintainer:          tom.smeding@gmail.com
build-type:          Simple

executable ghc-prof-reader
  main-is:             Main.hs
  other-modules:       Parse, Prof
  build-depends:       base >= 4.13 && < 4.15,
                       containers >= 0.6.4 && < 0.7,
                       bytestring >= 0.10.12 && < 0.11,
                       brick >= 0.57 && < 0.58,
                       vty,
                       text >= 1.2.4 && < 1.3
  hs-source-dirs:      .
  default-language:    Haskell2010
  ghc-options:         -Wall -O2 -threaded