This repository has been archived by the owner on Nov 17, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
aoc2022.cabal
241 lines (233 loc) Β· 6.41 KB
/
aoc2022.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
cabal-version: 2.4
name: aoc2022
version: 0.1.0.0
synopsis: Development environment for Advent of Code challenges
description: Scaffolding for an integrated development environment for Advent of Code
challenges. Includes auto-runner, prompt displays and countdowns, and
integrated submissions.
category: Web
homepage: https://github.com/mstksg/advent-of-code-2022#readme
bug-reports: https://github.com/mstksg/advent-of-code-2022/issues
author: Justin Le
maintainer: justin@jle.im
copyright: (c) Justin Le 2022
license: MIT
license-file: LICENSE
build-type: Simple
extra-source-files:
README.md
CHANGELOG.md
source-repository head
type: git
location: https://github.com/mstksg/advent-of-code-2022.git
common common-options
build-depends: advent-of-code-api >=0.2.7
, Cabal
, aeson
, ansi-terminal
, base >=4.7 && <5
, bitvec
, bytestring
, comonad
, conduino
, constraints
, data-fix
, constraints-extras < 0.4
, containers
, criterion
, data-default-class
, data-interval
, data-memocombinators
, deepseq
, dependent-sum
, directory
, extended-reals
, fgl
, filepath
, fin
, finitary
, finite-typelits
, foldl
, ghc-typelits-natnormalise
, groups
, hashable
, haskeline
, haskell-names
, haskell-src-exts
, heredoc
, hpack
, lens
, linear
, megaparsec
, microlens-th
, monoidal-containers
, mtl
, nonempty-containers
, pandoc
, parallel
, parser-combinators
, pointedlist
, profunctors
, psqueues
, recursion-schemes
, safe
, semigroupoids
, split
, strict-tuple
, strict-tuple
, tagsoup
, template-haskell
, text
, th-abstraction
, time
, transformers
, vector
, vector-algorithms
, vector-sized
, yaml
ghc-options: -Wall
-Wcompat
-Widentities
-Wincomplete-uni-patterns
-Wincomplete-record-updates
-Wno-partial-type-signatures
if impl(ghc >= 8.0)
ghc-options: -Wredundant-constraints
if impl(ghc >= 8.2)
ghc-options: -fhide-source-paths
if impl(ghc >= 8.4)
ghc-options: -Wmissing-export-lists
-Wpartial-fields
if impl(ghc >= 8.8)
ghc-options: -Wmissing-deriving-strategies
default-language: Haskell2010
default-extensions:
AllowAmbiguousTypes
ApplicativeDo
BangPatterns
BlockArguments
DataKinds
DeriveFoldable
DeriveFunctor
DeriveGeneric
DeriveTraversable
DerivingStrategies
EmptyCase
FlexibleContexts
FlexibleInstances
FunctionalDependencies
GADTs
GeneralizedNewtypeDeriving
ImplicitParams
KindSignatures
LambdaCase
MonadComprehensions
MultiParamTypeClasses
MultiWayIf
NumDecimals
OverloadedLabels
PartialTypeSignatures
PatternGuards
PatternSynonyms
PolyKinds
RankNTypes
RecordWildCards
ScopedTypeVariables
StandaloneDeriving
TemplateHaskell
TupleSections
TypeApplications
TypeInType
TypeOperators
UndecidableInstances
ViewPatterns
library
import: common-options
exposed-modules:
AOC
AOC.Challenge
AOC.Challenge.Day01
AOC.Challenge.Day02
AOC.Challenge.Day03
AOC.Challenge.Day04
AOC.Challenge.Day05
AOC.Challenge.Day06
AOC.Challenge.Day07
AOC.Challenge.Day08
AOC.Challenge.Day09
AOC.Challenge.Day10
AOC.Challenge.Day11
AOC.Challenge.Day12
AOC.Challenge.Day13
AOC.Challenge.Day14
AOC.Challenge.Day15
AOC.Challenge.Day16
AOC.Challenge.Day17
AOC.Challenge.Day18
AOC.Challenge.Day19
AOC.Challenge.Day20
AOC.Challenge.Day21
AOC.Challenge.Day22
AOC.Challenge.Day23
AOC.Challenge.Day24
AOC.Challenge.Day25
AOC.Common
AOC.Common.FinitarySet
AOC.Common.Point
AOC.Common.Search
AOC.Discover
AOC.Prelude
AOC.Run
AOC.Run.Config
AOC.Run.Interactive
AOC.Run.Load
AOC.Solver
AOC.Util
AOC.Util.DynoMap
other-modules:
Paths_aoc2022
hs-source-dirs:
src
other-modules:
Paths_aoc2022
executable aoc2022
import: common-options
main-is: aoc.hs
hs-source-dirs:
app
build-depends:
ansi-terminal
, aoc2022
, base >=4.7 && <5
, containers
, deepseq
, finite-typelits
, microlens
, mtl
, optparse-applicative
default-language: Haskell2010
ghc-options: -threaded -rtsopts -O2 -with-rtsopts=-N
test-suite aoc2022-test
import: common-options
type: exitcode-stdio-1.0
main-is: Spec.hs
hs-source-dirs:
test
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-depends:
ansi-terminal
, aoc2022
, base >=4.7 && <5
, mtl
default-language: Haskell2010
benchmark aoc2022-bench
type: exitcode-stdio-1.0
main-is: Bench.hs
hs-source-dirs:
bench
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-depends:
aoc2022
, base >=4.7 && <5
, mtl
default-language: Haskell2010