diff options
Diffstat (limited to 'day05/day05.cabal')
| -rw-r--r-- | day05/day05.cabal | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/day05/day05.cabal b/day05/day05.cabal new file mode 100644 index 0000000..0923420 --- /dev/null +++ b/day05/day05.cabal @@ -0,0 +1,34 @@ +cabal-version: 2.4 +name: day05 +version: 0.1.0.0 +synopsis: + +-- A URL where users can report bugs. +-- bug-reports: +license: +author: Shivesh Mandalia +maintainer: mail@shivesh.org + +executable day05 + main-is: Main.hs + + -- Modules included in this executable, other than Main. + -- other-modules: + + -- LANGUAGE extensions used by modules in this package. + default-extensions: + NoImplicitPrelude + OverloadedStrings + StandaloneKindSignatures + + build-depends: + , base ^>=4.16.4.0 + , optparse-applicative >=0.17.0.0 + , parsec >=3.1.16.1 + , relude ^>=1.1.0.0 + + hs-source-dirs: app + default-language: Haskell2010 + ghc-options: + -Weverything -Wno-unused-packages -Wno-missing-safe-haskell-mode + -Wno-safe -Wno-missing-import-lists |
