X-Git-Url: https://git.njae.me.uk/?p=advent-of-code-20.git;a=blobdiff_plain;f=advent15%2Fpackage.yaml;fp=advent15%2Fpackage.yaml;h=cd2c591d649464553e9b960c3fce1d0f84efb3f9;hp=0000000000000000000000000000000000000000;hb=4ecf3b3b78c6ae46bb41526085d69572ba1e9204;hpb=60f781a177b4c92193f0fca095816c8ca883c1c4 diff --git a/advent15/package.yaml b/advent15/package.yaml new file mode 100644 index 0000000..cd2c591 --- /dev/null +++ b/advent15/package.yaml @@ -0,0 +1,69 @@ +# 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: advent15 +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: + advent15: + main: advent15.hs + source-dirs: src + dependencies: + - base >= 2 && < 6 + - text + - vector + + advent15slow: + main: advent15slow.hs + source-dirs: src + dependencies: + - base >= 2 && < 6 + - text + - containers +