-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathghc-prof-aeson-flamegraph.cabal
36 lines (33 loc) · 1.17 KB
/
ghc-prof-aeson-flamegraph.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
name: ghc-prof-aeson-flamegraph
version: 0.1.0.0
synopsis: Turn GHC `-pj` profiling output into FlameGraph format.
description: Please see the README on Github at <https://github.com/Fuuzetsu/ghc-prof-aeson-flamegraph#readme>
homepage: https://github.com/Fuuzetsu/ghc-prof-aeson-flamegraph#readme
bug-reports: https://github.com/Fuuzetsu/ghc-prof-aeson-flamegraph/issues
author: Mateusz Kowalczyk
maintainer: [email protected]
copyright: 2018, Mateusz Kowalczyk
license: BSD3
license-file: LICENSE
build-type: Simple
cabal-version: >= 1.10
category: Profiling
extra-source-files:
ChangeLog.md
README.md
source-repository head
type: git
location: https://github.com/Fuuzetsu/ghc-prof-aeson-flamegraph
executable ghc-prof-aeson-flamegraph
main-is: Main.hs
hs-source-dirs: app
ghc-options: -threaded -rtsopts "-with-rtsopts=-N -qg" -O2
build-depends: base >=4.5 && <5
, aeson
, bytestring
, containers
, ghc-prof-aeson
, optparse-applicative
, text
, vector
default-language: Haskell2010