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 4
/
Copy pathpackage.yaml
176 lines (165 loc) · 3.07 KB
/
package.yaml
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
name: aoc2018
version: 0.1.0.0
github: "mstksg/advent-of-code-2018"
license: BSD3
author: "Justin Le"
maintainer: "[email protected]"
copyright: "(c) Justin Le 2018"
extra-source-files:
- README.md
- CHANGELOG.md
synopsis: "Advent of Code 2018 solutions and auto-runner"
category: Web
description: |
It's the Advent of Code 2018!
This package contains Advent of 2018 solutions (spoilers!) and
auto-runner. Each challenge exists in its own module, and module headers
will also include a brief synopsis and reflection.
ghc-options:
- -Wall
- -Wcompat
- -Wno-partial-type-signatures
- -Wredundant-constraints
default-extensions:
- AllowAmbiguousTypes
- ApplicativeDo
- BangPatterns
- BlockArguments
- DataKinds
- DeriveFoldable
- DeriveFunctor
- DeriveGeneric
- DeriveTraversable
- EmptyCase
- FlexibleContexts
- FlexibleInstances
- FunctionalDependencies
- GADTs
- GeneralizedNewtypeDeriving
- ImplicitParams
- KindSignatures
- LambdaCase
- MonadComprehensions
- MultiParamTypeClasses
- MultiWayIf
- NumDecimals
- NumericUnderscores
- OverloadedLabels
- PartialTypeSignatures
- PatternGuards
- PatternSynonyms
- PolyKinds
- RankNTypes
- RecordWildCards
- ScopedTypeVariables
- StandaloneDeriving
- TemplateHaskell
- TransformListComp
- TupleSections
- TypeApplications
- TypeInType
- TypeOperators
- UndecidableInstances
- ViewPatterns
dependencies:
- base >= 4.7 && < 5
- mtl
library:
source-dirs: src
dependencies:
- advent-of-code-api >= 0.2.7
- advent-of-code-ocr
- aeson
- ansi-terminal
- pointedlist
- astar
- bytestring
- free-algebras
- conduit
- containers
- criterion
- data-default
- data-default-class
- data-memocombinators
- deepseq
- directory
- dlist
- fgl
- filepath
- finitary
- finite-typelits
- foldl
- groups
- hashable
- haskeline
- haskell-names
- haskell-src-exts
- heredoc
- hpack
- lens
- linear
- megaparsec >= 8.0
- mtl
- nonempty-containers
- pandoc
- parallel
- parsec
- parser-combinators >= 1.2.0
- primitive
- profunctors
- psqueues
- recursion-schemes
- semigroupoids
- split
- statistics
- template-haskell
- text
- th-abstraction
- time
- transformers
- unordered-containers
- vector
- vector-sized
- witherable
- yaml
executables:
aoc2018:
main: aoc.hs
source-dirs: app
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- aoc2018
- optparse-applicative
- microlens
- containers
- deepseq
- lens
- finite-typelits
- lens
- optparse-applicative
- ansi-terminal
tests:
aoc2018-test:
main: Spec.hs
source-dirs: test
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- aoc2018
- ansi-terminal
benchmarks:
aoc2018-bench:
main: Bench.hs
source-dirs: bench
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
- -O2
dependencies:
- aoc2018