summaryrefslogtreecommitdiffstats
path: root/day04/day04.cabal
diff options
context:
space:
mode:
Diffstat (limited to 'day04/day04.cabal')
-rw-r--r--day04/day04.cabal34
1 files changed, 34 insertions, 0 deletions
diff --git a/day04/day04.cabal b/day04/day04.cabal
new file mode 100644
index 0000000..2cd94d1
--- /dev/null
+++ b/day04/day04.cabal
@@ -0,0 +1,34 @@
+cabal-version: 2.4
+name: day04
+version: 0.1.0.0
+synopsis:
+
+-- A URL where users can report bugs.
+-- bug-reports:
+license:
+author: Shivesh Mandalia
+maintainer: mail@shivesh.org
+
+executable day04
+ 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