-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadvent-of-code2024.cabal
92 lines (89 loc) · 1.94 KB
/
advent-of-code2024.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
cabal-version: >=1.10
name: advent-of-code2024
version: 0.1.0.0
-- synopsis:
-- description:
-- bug-reports:
-- license:
author: Simon Reitinger
maintainer: simre4775@gmail.com
-- copyright:
-- category:
build-type: Simple
extra-source-files: CHANGELOG.md
library
hs-source-dirs: src
exposed-modules: Template, Shared, Day1.Main, Day2.Main, Day3.Main, Day4.Main, Day5.Main, Day6.Main, Day7.Main, Day8.Main,
Day9.Main, Day10.Main, Day11.Main, Day12.Main, Day13.Main, Day14.Main, Day15.Main, Day16.Main,
Day17.Main, Day18.Main, Day19.Main, Day20.Main, Day21.Main, Day22.Main, Day23.Main, Day24.Main,
Day25.Main
-- other-modules:
-- other-extensions:
build-depends:
base,
containers,
unordered-containers,
text,
bytestring,
split,
attoparsec,
vector,
deepseq,
hashtables,
array,
primitive,
massiv,
megaparsec,
parser-combinators,
transformers,
regex,
random,
linear,
minisat-solver,
search-algorithms,
optics-core,
sbv,
yaml,
aeson,
bitvec,
MemoTrie,
matrix,
range,
parallel,
mfsolve,
graphviz,
advent,
grow-vector,
monad-loops
default-language: GHC2024
default-extensions:
QuasiQuotes
ScopedTypeVariables
GADTs
TypeFamilies
FlexibleContexts
FlexibleInstances
OverloadedStrings
MultiWayIf
LambdaCase
PatternSynonyms
RankNTypes
TypeApplications
BangPatterns
ViewPatterns
DataKinds
TupleSections
PolyKinds
TupleSections
StandaloneDeriving
PartialTypeSignatures
OverloadedLabels
OverloadedRecordDot
NoFieldSelectors
DuplicateRecordFields
ghc-options: -O2 -threaded
executable runner
hs-source-dirs: app
main-is: Main.hs
build-depends: base >=4.14, advent-of-code2024
ghc-options: -O2 -threaded