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 3.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  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. Day10
  27. Day11
  28. Day11.Parser
  29. Day2
  30. Day2.Part1
  31. Day2.Part2
  32. Day2.Shared
  33. Day3
  34. Day3.Part1
  35. Day3.Part2
  36. Day3.Shared
  37. Day4
  38. Day4.Part1
  39. Day4.Part2
  40. Day4.Shared
  41. Day5
  42. Day5.Part1
  43. Day5.Part2
  44. Day5.Shared
  45. Day6
  46. Day7
  47. Day7.Interpreter
  48. Day7.Parser
  49. Day8
  50. Day9
  51. Lib
  52. Shared
  53. other-modules:
  54. Paths_aoc2022
  55. hs-source-dirs:
  56. src
  57. ghc-options: -Wall -Wcompat -Widentities -Wincomplete-record-updates -Wincomplete-uni-patterns -Wmissing-export-lists -Wmissing-home-modules -Wpartial-fields -Wredundant-constraints
  58. build-depends:
  59. Ranged-sets
  60. , base >=4.7 && <5
  61. , containers
  62. , heredoc
  63. , hspec
  64. , hspec-megaparsec
  65. , lens
  66. , matrix
  67. , megaparsec
  68. , mtl
  69. , parsec
  70. , sort
  71. , split
  72. , text
  73. , transformers
  74. , vector
  75. default-language: Haskell2010
  76. executable aoc2022-exe
  77. main-is: Main.hs
  78. other-modules:
  79. Paths_aoc2022
  80. hs-source-dirs:
  81. app
  82. 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
  83. build-depends:
  84. Ranged-sets
  85. , aoc2022
  86. , base >=4.7 && <5
  87. , containers
  88. , heredoc
  89. , hspec
  90. , hspec-megaparsec
  91. , lens
  92. , matrix
  93. , megaparsec
  94. , mtl
  95. , parsec
  96. , sort
  97. , split
  98. , text
  99. , transformers
  100. , vector
  101. default-language: Haskell2010
  102. test-suite aoc2022-test
  103. type: exitcode-stdio-1.0
  104. main-is: Spec.hs
  105. other-modules:
  106. Day10Spec
  107. Day11Spec
  108. Day1Spec
  109. Day2Spec
  110. Day3Spec
  111. Day4Spec
  112. Day5Spec
  113. Day6Spec
  114. Day7Spec
  115. Day8Spec
  116. Day9Spec
  117. Paths_aoc2022
  118. hs-source-dirs:
  119. test
  120. 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
  121. build-depends:
  122. Ranged-sets
  123. , aoc2022
  124. , base >=4.7 && <5
  125. , containers
  126. , heredoc
  127. , hspec
  128. , hspec-megaparsec
  129. , lens
  130. , matrix
  131. , megaparsec
  132. , mtl
  133. , parsec
  134. , sort
  135. , split
  136. , text
  137. , transformers
  138. , vector
  139. default-language: Haskell2010