Finally done day 24
[advent-of-code-19.git] / advent24 / package.yaml
1 # This YAML file describes your package. Stack will automatically generate a
2 # Cabal file when you run `stack build`. See the hpack website for help with
3 # this file: <https://github.com/sol/hpack>.
4
5 name: advent24
6 synopsis: Advent of Code
7 version: '0.0.1'
8
9 default-extensions:
10 - AllowAmbiguousTypes
11 - ApplicativeDo
12 - BangPatterns
13 - BlockArguments
14 - DataKinds
15 - DeriveFoldable
16 - DeriveFunctor
17 - DeriveGeneric
18 - DeriveTraversable
19 - EmptyCase
20 - FlexibleContexts
21 - FlexibleInstances
22 - FunctionalDependencies
23 - GADTs
24 - GeneralizedNewtypeDeriving
25 - ImplicitParams
26 - KindSignatures
27 - LambdaCase
28 - MonadComprehensions
29 - MonoLocalBinds
30 - MultiParamTypeClasses
31 - MultiWayIf
32 - NamedFieldPuns
33 - NegativeLiterals
34 - NumDecimals
35 # - OverloadedLists
36 - OverloadedStrings
37 - PartialTypeSignatures
38 - PatternGuards
39 - PatternSynonyms
40 - PolyKinds
41 - RankNTypes
42 - RecordWildCards
43 - ScopedTypeVariables
44 - TemplateHaskell
45 - TransformListComp
46 - TupleSections
47 - TypeApplications
48 - TypeFamilies
49 - TypeInType
50 - TypeOperators
51 - ViewPatterns
52
53
54 executables:
55 advent24:
56 main: advent24.hs
57 source-dirs: src
58 dependencies:
59 - base >= 2 && < 6
60 - finite-typelits
61 - containers
62 - mtl
63 - matrix
64 - comonad
65 - adjunctions
66 - distributive
67
68 advent24b:
69 main: advent24b.hs
70 source-dirs: src
71 dependencies:
72 - base >= 2 && < 6
73 - containers
74
75 # advent24map:
76 # main: advent24map.hs
77 # source-dirs: src
78 # dependencies:
79 # - base >= 2 && < 6
80 # - finite-typelits
81 # - containers
82 # - mtl
83 # - comonad
84 # - adjunctions
85 # - distributive
86
87 # advent24tape:
88 # main: advent24tape.hs
89 # source-dirs: src
90 # dependencies:
91 # - base >= 2 && < 6
92 # - finite-typelits
93 # - containers
94 # - mtl
95 # - comonad
96 # - adjunctions
97 # - distributive
98 # - free
99
100 # advent24v:
101 # main: advent24v.hs
102 # source-dirs: src
103 # dependencies:
104 # - base >= 2 && < 6
105 # - finite-typelits
106 # - mtl
107 # - vector
108 # - comonad
109 # - adjunctions
110 # - distributive