Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

aoc2022.cabal 2.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. cabal-version: 1.12
  2. -- This file has been generated from package.yaml by hpack version 0.35.0.
  3. --
  4. -- see: https://github.com/sol/hpack
  5. name: aoc2022
  6. version: 0.1.0.0
  7. description: Please see the README on GitHub at <https://github.com/audax/aoc2022#readme>
  8. homepage: https://github.com/audax/aoc2022#readme
  9. bug-reports: https://github.com/audax/aoc2022/issues
  10. author: Jens Kadenbach
  11. maintainer: jens.kadenbach@smartsteuer.de
  12. copyright: 2022 Jens Kadenbach
  13. license: BSD3
  14. license-file: LICENSE
  15. build-type: Simple
  16. extra-source-files:
  17. README.md
  18. CHANGELOG.md
  19. source-repository head
  20. type: git
  21. location: https://github.com/audax/aoc2022
  22. library
  23. exposed-modules:
  24. Day1
  25. Day1.Internal
  26. Day2
  27. Day2.Part1
  28. Day2.Part2
  29. Day2.Shared
  30. Day3
  31. Day3.Part1
  32. Day3.Part2
  33. Day3.Shared
  34. Day4
  35. Day4.Part1
  36. Day4.Part2
  37. Day4.Shared
  38. Day5
  39. Day5.Part1
  40. Day5.Part2
  41. Day5.Shared
  42. Lib
  43. other-modules:
  44. Paths_aoc2022
  45. hs-source-dirs:
  46. src
  47. ghc-options: -Wall -Wcompat -Widentities -Wincomplete-record-updates -Wincomplete-uni-patterns -Wmissing-export-lists -Wmissing-home-modules -Wpartial-fields -Wredundant-constraints
  48. build-depends:
  49. QuickCheck
  50. , Ranged-sets
  51. , base >=4.7 && <5
  52. , containers
  53. , heredoc
  54. , hspec
  55. , lens
  56. , split
  57. , text
  58. , these
  59. default-language: Haskell2010
  60. executable aoc2022-exe
  61. main-is: Main.hs
  62. other-modules:
  63. Paths_aoc2022
  64. hs-source-dirs:
  65. app
  66. ghc-options: -Wall -Wcompat -Widentities -Wincomplete-record-updates -Wincomplete-uni-patterns -Wmissing-export-lists -Wmissing-home-modules -Wpartial-fields -Wredundant-constraints -threaded -rtsopts -with-rtsopts=-N
  67. build-depends:
  68. QuickCheck
  69. , Ranged-sets
  70. , aoc2022
  71. , base >=4.7 && <5
  72. , containers
  73. , heredoc
  74. , hspec
  75. , lens
  76. , split
  77. , text
  78. , these
  79. default-language: Haskell2010
  80. test-suite aoc2022-test
  81. type: exitcode-stdio-1.0
  82. main-is: Spec.hs
  83. other-modules:
  84. Day1Spec
  85. Day2Spec
  86. Day3Spec
  87. Day4Spec
  88. Day5Spec
  89. Paths_aoc2022
  90. hs-source-dirs:
  91. test
  92. ghc-options: -Wall -Wcompat -Widentities -Wincomplete-record-updates -Wincomplete-uni-patterns -Wmissing-export-lists -Wmissing-home-modules -Wpartial-fields -Wredundant-constraints -threaded -rtsopts -with-rtsopts=-N
  93. build-depends:
  94. QuickCheck
  95. , Ranged-sets
  96. , aoc2022
  97. , base >=4.7 && <5
  98. , containers
  99. , heredoc
  100. , hspec
  101. , lens
  102. , split
  103. , text
  104. , these
  105. default-language: Haskell2010