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.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. name: aoc2022
  2. version: 0.1.0.0
  3. github: "audax/aoc2022"
  4. license: BSD3
  5. author: "Jens Kadenbach"
  6. maintainer: "jens.kadenbach@smartsteuer.de"
  7. copyright: "2022 Jens Kadenbach"
  8. extra-source-files:
  9. - README.md
  10. - CHANGELOG.md
  11. # Metadata used when publishing your package
  12. # synopsis: Short description of your package
  13. # category: Web
  14. # To avoid duplicated efforts in documentation and dealing with the
  15. # complications of embedding Haddock markup inside cabal files, it is
  16. # common to point users to the README.md file.
  17. description: Please see the README on GitHub at <https://github.com/audax/aoc2022#readme>
  18. dependencies:
  19. - base >= 4.7 && < 5
  20. - hspec
  21. - text
  22. - split
  23. - heredoc
  24. - containers
  25. - split
  26. - lens
  27. - Ranged-sets
  28. - parsec
  29. - matrix
  30. - vector
  31. - megaparsec
  32. - transformers
  33. - hspec-megaparsec
  34. - mtl
  35. - sort
  36. ghc-options:
  37. - -Wall
  38. - -Wcompat
  39. - -Widentities
  40. - -Wincomplete-record-updates
  41. - -Wincomplete-uni-patterns
  42. - -Wmissing-export-lists
  43. - -Wmissing-home-modules
  44. - -Wpartial-fields
  45. - -Wredundant-constraints
  46. library:
  47. source-dirs: src
  48. executables:
  49. aoc2022-exe:
  50. main: Main.hs
  51. source-dirs: app
  52. ghc-options:
  53. - -threaded
  54. - -rtsopts
  55. - -with-rtsopts=-N
  56. dependencies:
  57. - aoc2022
  58. tests:
  59. aoc2022-test:
  60. main: Spec.hs
  61. source-dirs: test
  62. ghc-options:
  63. - -threaded
  64. - -rtsopts
  65. - -with-rtsopts=-N
  66. dependencies:
  67. - aoc2022