Initial file structure set up.
[advent-of-code-19.git] / advent01 / 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: advent01
6 synopsis: Advent of Code
7 version: '0.0.1'
8 executables:
9 advent01:
10 main: advent01.hs
11 source-dirs: src
12 dependencies:
13 - base >= 2 && < 6
14 - text
15 - megaparsec
16 - containers