X-Git-Url: https://git.njae.me.uk/?a=blobdiff_plain;f=advent04%2Fpackage.yaml;fp=advent04%2Fpackage.yaml;h=60d0bca91362a5113bf7281c3b2172eb76d5c4b4;hb=1949f629afb7c8d0672207bc9599c74dc19f9848;hp=0000000000000000000000000000000000000000;hpb=68043122bb8c2cc485dfa18d26e547ad73730a2e;p=advent-of-code-20.git diff --git a/advent04/package.yaml b/advent04/package.yaml new file mode 100644 index 0000000..60d0bca --- /dev/null +++ b/advent04/package.yaml @@ -0,0 +1,61 @@ +# 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: advent04 +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: + advent04: + main: advent04.hs + source-dirs: src + dependencies: + - base >= 2 && < 6 + - text + - megaparsec + - containers \ No newline at end of file