Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

package.yaml 1.4KB

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