88422cffb4d963a43deadf39df17e876fe057e12
[advent-of-code-20.git] / advent07 / 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: advent07
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 executables:
54 advent07:
55 main: advent07.hs
56 source-dirs: src
57 dependencies:
58 - base >= 2 && < 6
59 - text
60 - attoparsec
61 - containers