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.

package.yaml 1.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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. - QuickCheck
  22. - text
  23. - split
  24. - heredoc
  25. - containers
  26. - split
  27. - lens
  28. - Ranged-sets
  29. - these
  30. ghc-options:
  31. - -Wall
  32. - -Wcompat
  33. - -Widentities
  34. - -Wincomplete-record-updates
  35. - -Wincomplete-uni-patterns
  36. - -Wmissing-export-lists
  37. - -Wmissing-home-modules
  38. - -Wpartial-fields
  39. - -Wredundant-constraints
  40. library:
  41. source-dirs: src
  42. executables:
  43. aoc2022-exe:
  44. main: Main.hs
  45. source-dirs: app
  46. ghc-options:
  47. - -threaded
  48. - -rtsopts
  49. - -with-rtsopts=-N
  50. dependencies:
  51. - aoc2022
  52. tests:
  53. aoc2022-test:
  54. main: Spec.hs
  55. source-dirs: test
  56. ghc-options:
  57. - -threaded
  58. - -rtsopts
  59. - -with-rtsopts=-N
  60. dependencies:
  61. - aoc2022