Files
aoc-2022/Y2022.cabal
2023-08-27 22:41:07 +02:00

39 lines
840 B
Plaintext

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
library
default-language: Haskell2010
hs-source-dirs: src
exposed-modules:
Lib
Print
Days.D01
Parse
Util
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