-
Notifications
You must be signed in to change notification settings - Fork 7
/
ghc-dump-tree.cabal
64 lines (60 loc) · 2.66 KB
/
ghc-dump-tree.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
59
60
61
62
63
64
name: ghc-dump-tree
version: 0.2.1.0
synopsis: Dump GHC's parsed, renamed, and type checked ASTs
description: Useful for GHC devs or people who want to do something with
GHC's AST but don't want to hook into the GHC API itself.
license: BSD3
license-file: LICENSE
author: Edsko de Vries
maintainer: [email protected]
copyright: Copyright 2015 Well-Typed LLP
homepage: https://github.com/edsko/ghc-dump-tree
bug-reports: https://github.com/edsko/ghc-dump-tree/issues
category: Development
build-type: Simple
cabal-version: >=1.10
tested-with: GHC==7.4.2, GHC==7.6.3, GHC==7.8.3, GHC==7.10.3, GHC==8.0.0.20160421
extra-source-files:
ChangeLog.md
README.md
CONTRIBUTORS
source-repository head
type: git
location: https://github.com/edsko/ghc-dump-tree.git
library
build-depends: base >=4.12 && <4.13,
aeson >=1.0 && <1.5,
bytestring >=0.9 && <0.11,
ghc >=8.6 && <8.7,
pretty >=1.1 && <1.2,
pretty-show >=1.6 && <2.0,
process >=1.1 && <1.7,
unordered-containers >=0.2 && <0.3,
vector >=0.10 && <0.13
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall -fno-warn-orphans
other-extensions: CPP
default-extensions: RecordWildCards
OverloadedStrings
exposed-modules: Language.Haskell.GHC.DumpTree
executable ghc-dump-tree
main-is: Main.hs
build-depends: base >=4.12 && <4.13,
aeson >=1.0 && <1.5,
bytestring >=0.9 && <0.11,
ghc >=8.6 && <8.7,
optparse-applicative >=0.11 && <0.15,
pretty >=1.1 && <1.2,
pretty-show >=1.6 && <2.0,
process >=1.1 && <1.7,
unordered-containers >=0.2 && <0.3,
vector >=0.10 && <0.13,
ghc-dump-tree
hs-source-dirs: src
other-modules: Language.Haskell.GHC.DumpTree
default-language: Haskell2010
ghc-options: -Wall -fno-warn-orphans
other-extensions: CPP
default-extensions: RecordWildCards
OverloadedStrings