forked from eswar2001/fdep
-
Notifications
You must be signed in to change notification settings - Fork 1
/
fdep.cabal
80 lines (71 loc) · 2.15 KB
/
fdep.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
cabal-version: 3.0
name: fdep
version: 0.1.0.0
synopsis:
A plugin to dump out function dependancy graph of whole package
license: MIT
license-file: LICENSE
author: eswar2001
maintainer: teswar2001@gmail.com
category: Development
build-type: Simple
extra-doc-files: CHANGELOG.md
common common-options
build-depends: base ^>=4.14.3.0
ghc-options: -Wall
-Wincomplete-uni-patterns
-Wincomplete-record-updates
-Wcompat
-Widentities
-Wredundant-constraints
-fhide-source-paths
default-language: Haskell2010
default-extensions: DeriveGeneric
GeneralizedNewtypeDeriving
InstanceSigs
LambdaCase
OverloadedStrings
RecordWildCards
ScopedTypeVariables
StandaloneDeriving
TypeApplications
library
import: common-options
exposed-modules: Fdep.Plugin
build-depends:
bytestring
, containers
, filepath
, ghc ^>= 8.10.7
, ghc-exactprint
, unordered-containers
, uniplate >= 1.6 && < 1.7
, references
, classyplate
, aeson
, directory
hs-source-dirs: src
default-language: Haskell2010
executable fdep
import: common-options
main-is: Main.hs
build-depends:
, aeson
, directory
, bytestring
, filepath
, containers
, extra
, aeson-pretty
, fdep
hs-source-dirs: app
default-language: Haskell2010
test-suite fdep-test
import: common-options
default-language: Haskell2010
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Main.hs
build-depends:
fdep
ghc-options: -fplugin=Fdep.Plugin