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.

41 lines
1.0 KiB

3 weeks ago
  1. cabal-version: 3.4
  2. name: aoc2024
  3. version: 0.1.0.0
  4. synopsis: AOC 2024 solutions
  5. homepage: https://git.annwan.me/Annwan/aoc2024
  6. license: BSD-3-Clause
  7. license-file: LICENSE
  8. author: Annwan
  9. maintainer: annwan@annwan.me
  10. build-type: Simple
  11. extra-doc-files: CHANGELOG.md
  12. common warnings
  13. ghc-options: -Wall
  14. library
  15. import: warnings
  16. exposed-modules: Day1, Day2
  17. build-depends: base ^>=4.18.0.0
  18. hs-source-dirs: src
  19. default-language: GHC2021
  20. test-suite aoc2024-test
  21. import: warnings
  22. default-language: GHC2021
  23. type: exitcode-stdio-1.0
  24. hs-source-dirs: test
  25. main-is: Main.hs
  26. build-depends:
  27. base ^>=4.18.0.0,
  28. aoc2024,
  29. hspec,
  30. hspec-contrib
  31. executable aoc2024-runner
  32. import: warnings
  33. default-language: GHC2021
  34. hs-source-dirs: run
  35. main-is: Main.hs
  36. build-depends:
  37. base ^>=4.18.0.0,
  38. aoc2024,