generated from lsmor/template-advent-of-code
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadvent-of-code.cabal
83 lines (73 loc) · 1.62 KB
/
advent-of-code.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
cabal-version: 3.8
name: advent-of-code
version: 0.1.0.0
description: Please see the README on GitHub at <https://github.com/lsmor/template-advent-of-code#readme>
homepage: https://github.com/lsmor/template-advent-of-code#readme
bug-reports: https://github.com/lsmor/template-advent-of-code/issues
author: Luis Morillo Najarro
copyright: 2021 Luis Morillo Najarro
license: BSD-3-Clause
build-type: Simple
extra-source-files:
README.md
source-repository head
type: git
location: https://github.com/lsmor/template-advent-of-code
common deps
default-extensions:
TypeApplications
OverloadedStrings
LambdaCase
TupleSections
StrictData
ImportQualifiedPost
build-depends:
attoparsec
, base >=4.7 && <5
, bytestring
, text
, containers
, matrix
, vector
, split
, search-algorithms
, mtl
, pointedlist
, bytestring-trie
, transformers
other-modules:
Paths_advent_of_code
ghc-options:
-Wall
default-language: Haskell2010
-- Do not touch after this line. aoc-hs will edit it
executable day-1
import: deps
hs-source-dirs:
solutions
main-is: day-1.hs
executable day-2
import: deps
hs-source-dirs:
solutions
main-is: day-2.hs
executable day-3
import: deps
hs-source-dirs:
solutions
main-is: day-3.hs
executable day-4
import: deps
hs-source-dirs:
solutions
main-is: day-4.hs
executable day-5
import: deps
hs-source-dirs:
solutions
main-is: day-5.hs
executable day-9
import: deps
hs-source-dirs:
solutions
main-is: day-9.hs