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.

aoc2022.cabal 3.2KB

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