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