cabal-version: 3.0 name: Y2022 version: 0.1.0.0 synopsis: Solutions to Advent of Code 2022 -- license: NONE author: ctsk maintainer: bugs@ctsk.xyz build-type: Simple source-repository head type: git location: https://github.com/ctsk/aoc-2022 common warnings ghc-options: -Wall -O2 -ddump-simpl -ddump-to-file library default-language: Haskell2010 hs-source-dirs: src ghc-options: -Wall -O2 -ddump-simpl -ddump-to-file exposed-modules: Lib Print Parse Util Days.D01 Days.D02 build-depends: base ^>=4.18.0.0 , megaparsec ^>=9.4.0 , text executable Y2022 import: warnings main-is: Main.hs build-depends: Y2022 , base ^>=4.18.0.0 hs-source-dirs: app default-language: Haskell2010