-
Notifications
You must be signed in to change notification settings - Fork 2
/
adventofcode.cabal
252 lines (246 loc) · 8.16 KB
/
adventofcode.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
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
name: adventofcode
version: 0.1.0.0
synopsis: Haskell solutions to adventofcode
description: Please see README.md
homepage: https://github.com/tylerjl/aoc-hs
license: MIT
license-file: LICENSE
author: Tyler Langlois
maintainer: [email protected]
-- copyright:
category: Web
build-type: Simple
-- extra-source-files:
cabal-version: >=2.0
executable adventofcode
hs-source-dirs: app
main-is: Main.hs
other-modules: Options
default-extensions: OverloadedStrings
ghc-options: -threaded -rtsopts -with-rtsopts=-N -Wall -Werror
build-depends: adventofcode
, base
, bytestring
, criterion-measurement
, optparse-generic
, safe
, text
, MissingH
, witch
default-language: Haskell2010
library
hs-source-dirs: src
default-extensions: QuasiQuotes
, OverloadedStrings
, TypeApplications
, ViewPatterns
ghc-options: -Wall
exposed-modules: AoC
, AoC.Utils
, Y2015
, Y2016
, Y2018
, Y2021
, Y2023
, Y2015.Util
, Y2015.D01
, Y2015.D02
, Y2015.D03
, Y2015.D04
, Y2015.D05
, Y2015.D06
, Y2015.D07
, Y2015.D08
, Y2015.D09
, Y2015.D10
, Y2015.D11
, Y2015.D12
, Y2015.D13
, Y2015.D14
, Y2015.D15
, Y2015.D16
, Y2015.D17
, Y2015.D18
, Y2015.D19
, Y2015.D20
, Y2015.D21
, Y2015.D22
, Y2015.D23
, Y2015.D24
, Y2015.D25
, Y2016.D01
, Y2016.D02
, Y2016.D09
, Y2016.D10
, Y2016.D12
, Y2016.D13
, Y2018.D01
, Y2018.D02
, Y2018.D03
, Y2018.D04
, Y2018.D05
, Y2021.D01
, Y2021.D02
, Y2021.D03
, Y2021.D04
, Y2021.D05
, Y2021.D06
, Y2021.D07
, Y2021.D08
, Y2021.D09
, Y2021.D10
, Y2021.D11
, Y2021.D12
, Y2021.D13
, Y2021.D14
, Y2021.D15
, Y2021.D16
, Y2021.D17
, Y2021.D18
, Y2021.D19
, Y2021.D20
, Y2023.D01
, Y2023.D02
, Y2023.D03
, Y2023.D04
build-depends: advent-of-code-ocr
, aeson
, attoparsec
, base >= 4.7 && < 5
, base16-bytestring
, bytestring
, containers
, cryptohash
, deepseq
, extra
, ghc
, grid
, hashable
, heaps
, lens
, matrix
, memoize
, MissingH
, mtl
, multiset
, parallel
, parsec
, repa
, safe
, search-algorithms
, scientific
, text
, time
, unordered-containers
, vector
, witch
default-language: Haskell2010
test-suite adventofcode-test
type: exitcode-stdio-1.0
build-tool-depends: hspec-discover:hspec-discover
default-extensions: TypeApplications
, OverloadedStrings
hs-source-dirs: test
main-is: Spec.hs
other-modules: Y2015.D01Spec
, Y2015.D02Spec
, Y2015.D03Spec
, Y2015.D04Spec
, Y2015.D05Spec
, Y2015.D06Spec
, Y2015.D07Spec
, Y2015.D08Spec
, Y2015.D09Spec
, Y2015.D10Spec
, Y2015.D11Spec
, Y2015.D12Spec
, Y2015.D13Spec
, Y2015.D14Spec
, Y2015.D15Spec
, Y2015.D17Spec
, Y2015.D18Spec
, Y2015.D19Spec
, Y2015.D20Spec
, Y2015.D21Spec
, Y2015.D22Spec
, Y2015.D23Spec
, Y2015.D24Spec
, Y2015.D25Spec
, Y2016.D01Spec
, Y2016.D02Spec
, Y2016.D09Spec
, Y2016.D10Spec
, Y2016.D12Spec
, Y2016.D13Spec
, Y2018.D01Spec
, Y2018.D02Spec
, Y2018.D03Spec
, Y2018.D04Spec
, Y2018.D05Spec
, Y2021.D01Spec
, Y2021.D02Spec
, Y2021.D03Spec
, Y2021.D04Spec
, Y2021.D05Spec
, Y2021.D06Spec
, Y2021.D07Spec
, Y2021.D08Spec
, Y2021.D09Spec
, Y2021.D10Spec
, Y2021.D11Spec
, Y2021.D12Spec
, Y2021.D13Spec
, Y2021.D14Spec
, Y2021.D15Spec
, Y2021.D16Spec
, Y2021.D17Spec
, Y2021.D18Spec
, Y2021.D19Spec
, Y2021.D20Spec
, Y2023.D01Spec
, Y2023.D02Spec
, Y2023.D03Spec
, Y2023.D04Spec
build-depends: base
, adventofcode
, bytestring
, containers
, hspec
, text
, witch
ghc-options: -threaded -rtsopts -with-rtsopts=-N
default-language: Haskell2010
benchmark criterion
default-language: Haskell2010
default-extensions: TypeApplications
ghc-options: -threaded -rtsopts "-with-rtsopts=-N -T"
hs-source-dirs: benchmark
main-is: Bench.hs
other-modules: Y2015.Bench
, Y2016.Bench
, Y2021.Bench
build-depends: base
, bytestring
, adventofcode
, criterion
, mwc-random
, text
, witch
type: exitcode-stdio-1.0
benchmark space
default-language: Haskell2010
default-extensions: BlockArguments
, TypeApplications
, RecordWildCards
hs-source-dirs: benchmark
main-is: Space.hs
build-depends: base
, adventofcode
, text
, chart-svg
, weigh
, witch
type: exitcode-stdio-1.0
source-repository head
type: git
location: https://github.com/tylerjl/aoc-hs