You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

43 lines
1.1 KiB

cabal-version: 3.4
name: aoc2024
version: 0.1.0.0
synopsis: AOC 2024 solutions
homepage: https://git.annwan.me/Annwan/aoc2024
license: BSD-3-Clause
license-file: LICENSE
author: Annwan
maintainer: annwan@annwan.me
build-type: Simple
extra-doc-files: CHANGELOG.md
common warnings
ghc-options: -Wall
library
import: warnings
exposed-modules: Day1, Day2, Day3
build-depends: base ^>=4.18.0.0
, regex
, array
hs-source-dirs: src
default-language: GHC2021
test-suite aoc2024-test
import: warnings
default-language: GHC2021
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Main.hs
build-depends:
base ^>=4.18.0.0,
aoc2024,
hspec,
hspec-contrib
executable aoc2024-runner
import: warnings
default-language: GHC2021
hs-source-dirs: run
main-is: Main.hs
build-depends:
base ^>=4.18.0.0,
aoc2024,