X-Git-Url: https://git.njae.me.uk/?a=blobdiff_plain;f=advent-of-code21.cabal;h=50aa71c89d420052fc33990ea3aa059482791652;hb=730858e2d1d3dae06618254ce2386ec7a71f6a35;hp=54f366837e2b426274eb4bd02d781eadbe56e140;hpb=30f2ac165744b80139e28c783aa4d0f0ac122e87;p=advent-of-code-21.git

diff --git a/advent-of-code21.cabal b/advent-of-code21.cabal
index 54f3668..50aa71c 100644
--- a/advent-of-code21.cabal
+++ b/advent-of-code21.cabal
@@ -62,7 +62,7 @@ common common-extensions
                         , ViewPatterns
 
 common build-directives
-  build-depends:       base ^>=4.14
+  build-depends:       base >=4.15
   default-language:    Haskell2010
   ghc-options:         -O2 
                        -Wall 
@@ -73,7 +73,7 @@ executable advent-of-code21
   main-is:             Main.hs
   -- other-modules:
   -- other-extensions:
-  build-depends:       base >=4.13 && < 4.15
+  build-depends:       base >=4.15
   -- hs-source-dirs:
   default-language:    Haskell2010
 
@@ -84,4 +84,13 @@ executable advent01
   -- other-extensions:
   -- build-depends:       base >=4.13 && < 4.15
   -- hs-source-dirs:
-  -- default-language:    Haskell2010
\ No newline at end of file
+  -- default-language:    Haskell2010
+
+executable advent02
+  import: common-extensions, build-directives
+  main-is:             advent02/Main.hs
+  build-depends: text, attoparsec
+
+executable advent03
+  import: common-extensions, build-directives
+  main-is: advent03/Main.hs