Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

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