-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaoc2024.cabal
152 lines (136 loc) · 2.47 KB
/
aoc2024.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
cabal-version: 3.0
name: aoc2024
version: 0.1.0.0
synopsis:
Please see the README on GitHub at <https://github.com/ephemient/aoc2024/blob/main/hs/README.md>
homepage: https://github.com/ephemient/aoc2024/tree/main/hs
license: BSD-3-Clause
license-file: LICENSE
author: Daniel Lin
maintainer: [email protected]
category: None
build-type: Simple
extra-source-files: README.md
source-repository head
type: git
location: https://github.com/ephemient/aoc2024.git
subdir: hs
library
hs-source-dirs: src
exposed-modules:
Common
Day1
Day10
Day11
Day12
Day13
Day14
Day15
Day16
Day17
Day18
Day19
Day2
Day20
Day21
Day22
Day23
Day24
Day25
Day3
Day4
Day5
Day6
Day7
Day8
Day9
build-depends:
array ^>=0.5.7.0,
async ^>=2.2.5,
base >=4.20 && <4.22,
containers ^>=0.7,
heap ^>=1.0.4,
megaparsec ^>=9.7.0,
monad-loops ^>=0.4.3,
parallel ^>=3.2.2.0,
primitive ^>=0.9.0.0,
split ^>=0.2.5,
text ^>=2.1.2,
vector ^>=0.13.2.0,
ghc-options: -Wall
default-language: GHC2024
executable aoc2024
hs-source-dirs: app
main-is: Main.hs
c-sources: app/cbits/main.c
build-depends:
aoc2024,
base >=4.20 && <4.22,
filepath >=1.5.2.0 && <1.6,
megaparsec ^>=9.7.0,
text ^>=2.1.1,
ghc-options:
-no-hs-main
-threaded
-Wall
default-language: GHC2024
test-suite aoc2024-test
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Main.hs
other-modules:
CommonSpec
Day10Spec
Day11Spec
Day12Spec
Day13Spec
Day14Spec
Day15Spec
Day16Spec
Day17Spec
Day18Spec
Day19Spec
Day1Spec
Day20Spec
Day21Spec
Day22Spec
Day23Spec
Day24Spec
Day25Spec
Day2Spec
Day3Spec
Day4Spec
Day5Spec
Day6Spec
Day7Spec
Day8Spec
Day9Spec
build-depends:
QuickCheck ^>=2.15.0.1,
aoc2024,
base >=4.20 && <4.22,
hspec ^>=2.11.10,
text ^>=2.1.1,
build-tool-depends:
hspec-discover:hspec-discover ^>=2.11.10
ghc-options:
-threaded
-rtsopts
-with-rtsopts=-N
-Wall
default-language: GHC2024
benchmark aoc2024-bench
type: exitcode-stdio-1.0
hs-source-dirs: bench
main-is: Main.hs
c-sources: bench/cbits/main.c
build-depends:
aoc2024,
base >=4.20 && <4.22,
criterion ^>=1.6.4.0,
filepath >=1.5.2.0 && <1.6,
text ^>=2.1.1,
ghc-options:
-no-hs-main
-threaded
default-language: GHC2024