forked from alexwl/haskell-code-explorer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhaskell-code-explorer.cabal
More file actions
156 lines (152 loc) · 4.69 KB
/
haskell-code-explorer.cabal
File metadata and controls
156 lines (152 loc) · 4.69 KB
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
cabal-version: 3.8
name: haskell-code-explorer
version: 0.2.0.0
synopsis: Web application for exploring and understanding Haskell codebases
Category: GHC,Web
description: Please see README.md
license: MIT
license-file: LICENSE
author: Alexey Kiryushin
maintainer: alexey.a.kiryushin@gmail.com
build-type: Simple
library
exposed-modules: HaskellCodeExplorer.PackageInfo
, HaskellCodeExplorer.ModuleInfo
, HaskellCodeExplorer.Types
, HaskellCodeExplorer.Preprocessor
, HaskellCodeExplorer.GhcUtils
, HaskellCodeExplorer.AST.RenamedSource
, HaskellCodeExplorer.AST.TypecheckedSource
hs-source-dirs: src
ghc-options: -Wall -O2 -funbox-strict-fields
build-depends: aeson
, attoparsec
, base
, blaze-html
, bytestring
, Cabal
, Cabal-syntax
, cereal
, containers
, deepseq
, directory
, directory-tree
, exceptions
, extra
, fast-logger
, filemanip
, filepath
, haddock-library
, hashable
, IntervalMap
, ghc
, ghc-paths
, monad-logger
, mtl
, process
, syb
, text
, uniplate
, unordered-containers
, vector
executable haskell-code-indexer
main-is: Indexer.hs
ghc-options: -Wall -rtsopts -O2 -funbox-strict-fields -package ghc
other-modules: Paths_haskell_code_explorer
autogen-modules: Paths_haskell_code_explorer
hs-source-dirs: app
default-extensions: MonoLocalBinds
build-depends: aeson
, base
, bytestring
, Cabal
, Cabal-syntax
, cereal
, containers
, deepseq
, directory
, exceptions
, fast-logger
, filepath
, ghc
, haskell-code-explorer
, hspec
, IntervalMap
, monad-logger
, optparse-applicative
, os-string
, rts
, process
, time
, text
, unordered-containers
, uri-encode
, zlib
executable haskell-code-server
main-is: Server.hs
ghc-options: -Wall -O2 -rtsopts -funbox-strict-fields
hs-source-dirs: app,src
other-modules: HaskellCodeExplorer.Types, Store
build-depends: aeson
, base
, blaze-html
, bytestring
, cereal
, containers
, data-default
, deepseq
, directory
, exceptions
, fast-logger
, file-embed
, filemanip
, filepath
, IntervalMap
, text
, haddock-library
, hashable
, http-types
, http-api-data
, lens
, monad-logger
, optparse-applicative
, pagination
, mime-types
, mmap
, mtl
, lens-aeson
, servant
, servant-server
, syb
, unordered-containers
, uri-encode
, vector
, wai
, wai-extra
, wai-middleware-static
, warp
, wreq
build-depends: ghc-compact
test-suite test
type: exitcode-stdio-1.0
ghc-options: -Wall
hs-source-dirs: test
main-is: Main.hs
build-depends:
, attoparsec
, base
, bytestring
, containers
, directory
, filepath
, haskell-code-explorer
, hspec
, IntervalMap
, monad-logger
, process
, QuickCheck
, syb
, text
, uniplate
, unordered-containers
, vector