X-Git-Url: https://git.njae.me.uk/?p=advent-of-code-20.git;a=blobdiff_plain;f=advent13%2Fpackage.yaml;fp=advent13%2Fpackage.yaml;h=fde22777c50cdb43bc2025b3df122eb3f3c5d1e2;hp=0000000000000000000000000000000000000000;hb=7f33f392172a57f78d4de4a94af76a2f08428b66;hpb=0f78ee34867c196e4ac5d35c96334f0b644c23d9 diff --git a/advent13/package.yaml b/advent13/package.yaml new file mode 100644 index 0000000..fde2277 --- /dev/null +++ b/advent13/package.yaml @@ -0,0 +1,62 @@ +# 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: advent13 +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: + advent13: + main: advent13.hs + source-dirs: src + dependencies: + - base >= 2 && < 6 + - text + - attoparsec + - arithmoi + \ No newline at end of file