2023-08-27 22:30:00 +02:00
|
|
|
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
|
2023-08-28 18:40:38 +02:00
|
|
|
ghc-options: -Wall -O2 -ddump-simpl -ddump-to-file
|
2023-08-27 22:30:00 +02:00
|
|
|
|
|
|
|
|
library
|
|
|
|
|
default-language: Haskell2010
|
|
|
|
|
hs-source-dirs: src
|
2023-08-28 18:40:38 +02:00
|
|
|
ghc-options: -Wall -O2 -ddump-simpl -ddump-to-file
|
2023-08-27 22:30:00 +02:00
|
|
|
exposed-modules:
|
|
|
|
|
Lib
|
|
|
|
|
Print
|
|
|
|
|
Parse
|
|
|
|
|
Util
|
2023-08-28 18:40:38 +02:00
|
|
|
Days.D01
|
|
|
|
|
Days.D02
|
2023-08-29 09:24:31 +02:00
|
|
|
Days.D03
|
2023-08-27 22:30:00 +02:00
|
|
|
build-depends:
|
|
|
|
|
base ^>=4.18.0.0
|
2023-08-29 09:24:31 +02:00
|
|
|
, extra ^>=1.7.14
|
2023-08-27 22:30:00 +02:00
|
|
|
, 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
|