-
Notifications
You must be signed in to change notification settings - Fork 0
/
aoc2020-haskell.cabal
146 lines (140 loc) · 3.24 KB
/
aoc2020-haskell.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
cabal-version: 1.12
-- This file has been generated from package.yaml by hpack version 0.33.0.
--
-- see: https://github.com/sol/hpack
--
-- hash: 67b1d5aa5526150ce4ae8b15182312c43ba82ccb0b6237a0eb47f89f6550fb72
name: aoc2020-haskell
version: 0.1.0.0
description: Please see the README on GitHub at <https://github.com/helmetroo/aoc2020-haskell#readme>
homepage: https://github.com/helmetroo/aoc2020-haskell#readme
bug-reports: https://github.com/helmetroo/aoc2020-haskell/issues
author: Samuel Sweet
maintainer: samueljsweet@gmail.com
copyright: 2020 Samuel Sweet
license: BSD3
license-file: LICENSE
build-type: Simple
extra-source-files:
README.md
ChangeLog.md
source-repository head
type: git
location: https://github.com/helmetroo/aoc2020-haskell
library
exposed-modules:
P1.Solution
P1.SolutionPrinter
P1.TextFileReader
P10.JoltageFileReader
P10.Solution
P10.SolutionPrinter
P11.SeatMap
P11.SeatMapFileReader
P11.Solution
P11.SolutionPrinter
P12.Route
P12.RouteFileReader
P12.Solution
P12.SolutionPrinter
P13.BusNotes
P13.BusNotesFileReader
P13.Solution
P13.SolutionPrinter
P14.Machine
P14.ProgramFileReader
P14.SolutionPrinter
P15.SequenceCalculator
P15.SolutionPrinter
P16.Solution
P16.SolutionPrinter
P16.TicketNotes
P16.TicketNotesParser
P2.PasswordFileReader
P2.PasswordTypes
P2.Solution
P2.SolutionPrinter
P3.Solution
P3.SolutionPrinter
P3.TreeMap
P3.TreeMapFileReader
P4.Passport
P4.PassportFileReader
P4.Solution
P4.SolutionPrinter
P5.BoardingPass
P5.BoardingPassFileReader
P5.Solution
P5.SolutionPrinter
P6.Solution
P6.SolutionPrinter
P6.Survey
P6.SurveyFileReader
P7.Rules
P7.RulesFileReader
P7.Solution
P7.SolutionPrinter
P8.Machine
P8.ProgramFileReader
P8.Solution
P8.SolutionPrinter
P9.NumberFileReader
P9.Solution
P9.SolutionPrinter
SolutionUtils.InputFile
SolutionUtils.IntegerFileReader
SolutionUtils.Splitter
other-modules:
Paths_aoc2020_haskell
hs-source-dirs:
src
build-depends:
array
, base >=4.7 && <5
, containers
, fclabels
, mtl
, parsec
, regex-base
, regex-pcre
, sort
default-language: Haskell2010
executable aoc2020-haskell-exe
main-is: Main.hs
other-modules:
Paths_aoc2020_haskell
hs-source-dirs:
app
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-depends:
aoc2020-haskell
, array
, base >=4.7 && <5
, containers
, fclabels
, mtl
, parsec
, regex-base
, regex-pcre
, sort
default-language: Haskell2010
test-suite aoc2020-haskell-test
type: exitcode-stdio-1.0
main-is: Spec.hs
other-modules:
Paths_aoc2020_haskell
hs-source-dirs:
test
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-depends:
aoc2020-haskell
, array
, base >=4.7 && <5
, containers
, fclabels
, mtl
, parsec
, regex-base
, regex-pcre
, sort
default-language: Haskell2010