-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathaoc2022.cabal
157 lines (151 loc) · 3.24 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
cabal-version: 2.4
name: aoc2022
version: 0.1.0.0
license: BSD-3-Clause
license-file: LICENSE
copyright: (c) 2022 Daniel Lin
author: Daniel Lin
maintainer: [email protected]
homepage: https://github.com/ephemient/aoc2022/tree/main/hs
synopsis: Advent of Code 2022 - my solutions in Haskell
description: Please see the README on GitHub at <https://github.com/ephemient/aoc2022/blob/main/hs/README.md>
data-files:
day1.txt
, day2.txt
, day3.txt
, day4.txt
, day5.txt
, day6.txt
, day7.txt
, day8.txt
, day9.txt
, day10.txt
, day11.txt
, day12.txt
, day13.txt
, day14.txt
, day15.txt
, day16.txt
, day17.txt
, day18.txt
, day19.txt
, day20.txt
, day21.txt
, day22.txt
, day23.txt
, day24.txt
, day25.txt
extra-source-files:
README.md
library
exposed-modules:
Day1
, Day2
, Day3
, Day4
, Day5
, Day6
, Day7
, Day8
, Day9
, Day10
, Day11
, Day12
, Day13
, Day13Fast
, Day14
, Day15
, Day16
, Day17
, Day18
, Day19
, Day20
, Day21
, Day22
, Day23
, Day24
, Day25
build-depends:
array ^>=0.5.4.0
, base ^>=4.16.0.0
, containers ^>=0.6.5.1
, heap ^>=1.0.4
, megaparsec ^>=9.3.0
, mtl ^>=2.2.2
, parallel ^>=3.2.2.0
, primitive ^>=0.7.4.0
, split ^>=0.2.3.5
, template-haskell ^>=2.18.0.0
, text ^>=2.0.0
, vector ^>=0.13.0.0
other-modules:
Common
, Day9.TH
hs-source-dirs: src
default-language: GHC2021
executable aoc2022-exe
main-is: Main.hs
build-depends:
aoc2022
, base ^>=4.16.0.0
, megaparsec ^>=9.3.0
, text ^>=2.0.0
other-modules:
Paths_aoc2022
hs-source-dirs: app
default-language: GHC2021
ghc-options: -no-hs-main -threaded
c-sources: app/cbits/main.c
test-suite aoc2022-test
type: exitcode-stdio-1.0
main-is: Main.hs
build-depends:
aoc2022
, base ^>=4.16.0.0
, hspec ^>=2.10.0
, text ^>=2.0.0
other-modules:
Day1Spec
, Day2Spec
, Day3Spec
, Day4Spec
, Day5Spec
, Day6Spec
, Day7Spec
, Day8Spec
, Day9Spec
, Day10Spec
, Day11Spec
, Day12Spec
, Day13Spec
, Day14Spec
, Day15Spec
, Day16Spec
, Day17Spec
, Day18Spec
, Day19Spec
, Day20Spec
, Day21Spec
, Day22Spec
, Day23Spec
, Day24Spec
, Day25Spec
hs-source-dirs: test
default-language: GHC2021
build-tool-depends:
hspec-discover:hspec-discover ^>=2.10.0
ghc-options: -threaded -rtsopts "-with-rtsopts=-N -qg"
benchmark aoc2022-bench
type: exitcode-stdio-1.0
main-is: Main.hs
build-depends:
aoc2022
, base ^>=4.16.4.0
, criterion ^>=1.6.0.0
, text ^>=2.0.0
other-modules:
Paths_aoc2022
hs-source-dirs: bench
default-language: GHC2021
ghc-options: -no-hs-main -threaded
c-sources: bench/cbits/main.c