Moved Intcode interpreter into a separate module, ensured all previous days still...
[advent-of-code-19.git] / intcode / 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: intcode
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 - NegativeLiterals
33 - NumDecimals
34 - OverloadedLists
35 - OverloadedStrings
36 - PartialTypeSignatures
37 - PatternGuards
38 - PatternSynonyms
39 - PolyKinds
40 - RankNTypes
41 - RecordWildCards
42 - ScopedTypeVariables
43 - TemplateHaskell
44 - TransformListComp
45 - TupleSections
46 - TypeApplications
47 - TypeInType
48 - TypeOperators
49 - ViewPatterns
50
51
52 library:
53 source-dirs: src
54 dependencies:
55 - base >= 2 && < 6
56 - text
57 - megaparsec
58 - containers
59 - mtl