-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfortran-vars.cabal
225 lines (219 loc) · 5.51 KB
/
fortran-vars.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
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
cabal-version: 1.12
-- This file has been generated from package.yaml by hpack version 0.35.2.
--
-- see: https://github.com/sol/hpack
name: fortran-vars
version: 0.4.0
synopsis: Fortran memory model and other static analysis tools.
description: Various Fortran static analysis tools focusing on a memory model for Fortran types. Uses fortran-src for the syntax representation.
category: Language
homepage: https://github.com/camfort/fortran-vars#readme
bug-reports: https://github.com/camfort/fortran-vars/issues
maintainer: [email protected]
license: Apache-2.0
license-file: LICENSE
build-type: Simple
extra-source-files:
README.md
CHANGELOG.md
source-repository head
type: git
location: https://github.com/camfort/fortran-vars
library
exposed-modules:
Language.Fortran.Vars
Language.Fortran.Vars.Assignments
Language.Fortran.Vars.BozConstant
Language.Fortran.Vars.Call
Language.Fortran.Vars.CommonLayout
Language.Fortran.Vars.ConstantPropagation
Language.Fortran.Vars.CPValue
Language.Fortran.Vars.Dummy
Language.Fortran.Vars.Equivalence
Language.Fortran.Vars.Errors
Language.Fortran.Vars.Eval
Language.Fortran.Vars.Eval.Deprecated
Language.Fortran.Vars.Eval.Deprecated.Operation
Language.Fortran.Vars.Eval.FortranSrc
Language.Fortran.Vars.Eval.FortranSrc.Translate
Language.Fortran.Vars.Kind
Language.Fortran.Vars.Memory
Language.Fortran.Vars.MemoryLocation
Language.Fortran.Vars.Orphans
Language.Fortran.Vars.PureExpression
Language.Fortran.Vars.Range
Language.Fortran.Vars.Rep
Language.Fortran.Vars.StorageClass
Language.Fortran.Vars.StructureTable
Language.Fortran.Vars.SymbolTable
Language.Fortran.Vars.SymbolTable.Arrays
Language.Fortran.Vars.TypeCheck
Language.Fortran.Vars.Types
Language.Fortran.Vars.Types.SymbolTable
Language.Fortran.Vars.Union
Language.Fortran.Vars.Utils
other-modules:
Paths_fortran_vars
hs-source-dirs:
src
default-extensions:
EmptyCase
LambdaCase
InstanceSigs
BangPatterns
ExplicitNamespaces
DerivingStrategies
StandaloneDeriving
DeriveAnyClass
DeriveGeneric
DeriveDataTypeable
DeriveFunctor
DeriveFoldable
DeriveTraversable
DeriveLift
FlexibleContexts
FlexibleInstances
MultiParamTypeClasses
GADTs
PolyKinds
RoleAnnotations
RankNTypes
TypeApplications
DefaultSignatures
TypeFamilies
DataKinds
MagicHash
BinaryLiterals
ScopedTypeVariables
TypeOperators
ghc-options: -Wall
build-depends:
aeson >=1.5.0.0
, base >=4.7 && <5
, bytestring >=0.10.8.1
, containers >=0.5.7.1
, deepseq >=1.4.4.0
, fgl >=5
, fortran-src >=0.15.0 && <0.16
, fortran-src-extras >=0.5.0 && <0.6
, mtl
, text >=1.2.2.2
, uniplate >=1.6.10
default-language: Haskell2010
executable fortran-vars
main-is: Main.hs
other-modules:
Paths_fortran_vars
hs-source-dirs:
app
default-extensions:
EmptyCase
LambdaCase
InstanceSigs
BangPatterns
ExplicitNamespaces
DerivingStrategies
StandaloneDeriving
DeriveAnyClass
DeriveGeneric
DeriveDataTypeable
DeriveFunctor
DeriveFoldable
DeriveTraversable
DeriveLift
FlexibleContexts
FlexibleInstances
MultiParamTypeClasses
GADTs
PolyKinds
RoleAnnotations
RankNTypes
TypeApplications
DefaultSignatures
TypeFamilies
DataKinds
MagicHash
BinaryLiterals
ScopedTypeVariables
TypeOperators
ghc-options: -Wall -threaded -rtsopts
build-depends:
aeson >=1.5.0.0
, base >=4.7 && <5
, bytestring >=0.10.8.1
, containers >=0.5.7.1
, deepseq >=1.4.4.0
, fgl >=5
, fortran-src >=0.15.0 && <0.16
, fortran-src-extras >=0.5.0 && <0.6
, fortran-vars
, mtl
, text >=1.2.2.2
, uniplate >=1.6.10
default-language: Haskell2010
test-suite spec
type: exitcode-stdio-1.0
main-is: Spec.hs
other-modules:
AssignmentsSpec
BozConstantSpec
ConstantPropagationSpec
EvalSpec
PureExpressionSpec
StorageTableSpec
StructureTableSpec
SymbolTableSpec
TypeCheckSpec
Util
Paths_fortran_vars
hs-source-dirs:
test
default-extensions:
EmptyCase
LambdaCase
InstanceSigs
BangPatterns
ExplicitNamespaces
DerivingStrategies
StandaloneDeriving
DeriveAnyClass
DeriveGeneric
DeriveDataTypeable
DeriveFunctor
DeriveFoldable
DeriveTraversable
DeriveLift
FlexibleContexts
FlexibleInstances
MultiParamTypeClasses
GADTs
PolyKinds
RoleAnnotations
RankNTypes
TypeApplications
DefaultSignatures
TypeFamilies
DataKinds
MagicHash
BinaryLiterals
ScopedTypeVariables
TypeOperators
ghc-options: -Wall -threaded -rtsopts
build-tool-depends:
hspec-discover:hspec-discover
build-depends:
HUnit
, aeson >=1.5.0.0
, base >=4.7 && <5
, bytestring >=0.10.8.1
, containers >=0.5.7.1
, deepseq >=1.4.4.0
, fgl >=5
, fortran-src >=0.15.0 && <0.16
, fortran-src-extras >=0.5.0 && <0.6
, fortran-vars
, hspec
, mtl
, text >=1.2.2.2
, uniplate >=1.6.10
default-language: Haskell2010