X-Git-Url: https://git.njae.me.uk/?p=advent-of-code-20.git;a=blobdiff_plain;f=advent02%2Fpackage.yaml;fp=advent02%2Fpackage.yaml;h=7864e38834238cedff6c219807a5d3cdf7bba540;hp=0000000000000000000000000000000000000000;hb=72c69da4bb83a1a18965411c7a52b3f9b3a18d2d;hpb=d3f84f094ba00f34cd43eea17a7aab4200a8ef04 diff --git a/advent02/package.yaml b/advent02/package.yaml new file mode 100644 index 0000000..7864e38 --- /dev/null +++ b/advent02/package.yaml @@ -0,0 +1,60 @@ +# This YAML file describes your package. Stack will automatically generate a +# Cabal file when you run `stack build`. See the hpack website for help with +# this file: . + +name: advent02 +synopsis: Advent of Code +version: '0.0.1' + +default-extensions: +- AllowAmbiguousTypes +- ApplicativeDo +- BangPatterns +- BlockArguments +- DataKinds +- DeriveFoldable +- DeriveFunctor +- DeriveGeneric +- DeriveTraversable +- EmptyCase +- FlexibleContexts +- FlexibleInstances +- FunctionalDependencies +- GADTs +- GeneralizedNewtypeDeriving +- ImplicitParams +- KindSignatures +- LambdaCase +- MonadComprehensions +- MonoLocalBinds +- MultiParamTypeClasses +- MultiWayIf +- NamedFieldPuns +- NegativeLiterals +- NumDecimals +# - OverloadedLists +- OverloadedStrings +- PartialTypeSignatures +- PatternGuards +- PatternSynonyms +- PolyKinds +- RankNTypes +- RecordWildCards +- ScopedTypeVariables +- TemplateHaskell +- TransformListComp +- TupleSections +- TypeApplications +- TypeFamilies +- TypeInType +- TypeOperators +- ViewPatterns + +executables: + advent02: + main: advent02.hs + source-dirs: src + dependencies: + - base >= 2 && < 6 + - text + - megaparsec \ No newline at end of file