This repository has been archived by the owner on Mar 11, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
importify.cabal
172 lines (148 loc) · 5.54 KB
/
importify.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
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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
name: importify
version: 1.0.2
synopsis: Tool for haskell imports refactoring
description: Please see README.md
homepage: https://github.com/serokell/importify
bug-reports: https://github.com/serokell/importify/issues
license: MIT
license-file: LICENSE
author: @serokell
maintainer: Serokell <[email protected]>
copyright: 2017-2018 Serokell
category: Development, Refactoring
build-type: Simple
cabal-version: >=1.18
tested-with: GHC == 8.0.1
, GHC == 8.0.2
, GHC == 8.2.2
extra-doc-files: CHANGES.md
, README.md
source-repository head
type: git
location: https://github.com/serokell/importify
library
hs-source-dirs: src
exposed-modules:
Importify.Cabal
Importify.Cabal.Extension
Importify.Cabal.Module
Importify.Cabal.Package
Importify.Cabal.Target
Importify.Environment
Importify.Main
Importify.Main.Cache
Importify.Main.File
Importify.ParseException
Importify.Path
Importify.Preprocessor
Importify.Pretty
Importify.Resolution
Importify.Resolution.Explicit
Importify.Resolution.Hiding
Importify.Resolution.Implicit
Importify.Resolution.Qualified
Importify.Stack
Importify.Syntax
Importify.Syntax.Import
Importify.Syntax.Module
Importify.Syntax.Scoped
Importify.Syntax.Text
Importify.Tree
Extended.System.Wlog
other-modules: Extended.Data.Bool
Extended.Data.List
Extended.Data.Str
Extended.Lens.TH
build-depends: base >= 4.7 && < 5
, aeson
, aeson-pretty
, autoexporter
, bytestring
, Cabal
, containers
, filepath
, fmt
, foldl
, hashable
, haskell-names
, haskell-src-exts
, hse-cpp
, log-warper >= 1.8.2
, microlens-platform
, path
, path-io
, pretty-simple
, syb
, template-haskell
, text
, text-format
, turtle
, universum >= 1.0.0
, unordered-containers
, yaml
ghc-options: -Wall
-- if os(linux)
-- ghc-options: -optl-fuse-ld=gold
-- ld-options: -fuse-ld=gold
default-language: Haskell2010
default-extensions: GeneralizedNewtypeDeriving
LambdaCase
NoImplicitPrelude
OverloadedStrings
PartialTypeSignatures
RecordWildCards
executable importify
hs-source-dirs: app
main-is: Main.hs
other-modules: Options
build-depends: base, importify
, log-warper >= 1.8.2
, optparse-applicative
, universum >= 1.0.0
ghc-options: -threaded -rtsopts -with-rtsopts=-N -Wall
-- if os(linux)
-- ghc-options: -optl-fuse-ld=gold
-- ld-options: -fuse-ld=gold
default-language: Haskell2010
default-extensions: GeneralizedNewtypeDeriving
NoImplicitPrelude
OverloadedStrings
RecordWildCards
executable golden-generator
hs-source-dirs: test
main-is: GGenerator.hs
build-depends: base, importify
, text
, path
, path-io
, universum >= 1.0.0
ghc-options: -threaded -rtsopts -with-rtsopts=-N -Wall
-- if os(linux)
-- ghc-options: -optl-fuse-ld=gold
-- ld-options: -fuse-ld=gold
default-language: Haskell2010
test-suite importify-test
type: exitcode-stdio-1.0
hs-source-dirs: test/hspec
main-is: Runner.hs
other-modules: Paths_importify
Test.Cache
Test.File
build-depends: base, importify
, filepath
, hspec
, log-warper >= 1.8.2
, microlens-platform
, path
, path-io
, universum >= 1.0.0
, unordered-containers
ghc-options: -threaded -rtsopts -with-rtsopts=-N -Wall
-- if os(linux)
-- ghc-options: -optl-fuse-ld=gold
-- ld-options: -fuse-ld=gold
default-language: Haskell2010
default-extensions: GeneralizedNewtypeDeriving
NoImplicitPrelude
OverloadedStrings
RecordWildCards