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.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  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. Lib
  39. other-modules:
  40. Paths_aoc2022
  41. hs-source-dirs:
  42. src
  43. ghc-options: -Wall -Wcompat -Widentities -Wincomplete-record-updates -Wincomplete-uni-patterns -Wmissing-export-lists -Wmissing-home-modules -Wpartial-fields -Wredundant-constraints
  44. build-depends:
  45. QuickCheck
  46. , Ranged-sets
  47. , base >=4.7 && <5
  48. , containers
  49. , heredoc
  50. , hspec
  51. , lens
  52. , split
  53. , text
  54. default-language: Haskell2010
  55. executable aoc2022-exe
  56. main-is: Main.hs
  57. other-modules:
  58. Paths_aoc2022
  59. hs-source-dirs:
  60. app
  61. 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
  62. build-depends:
  63. QuickCheck
  64. , Ranged-sets
  65. , aoc2022
  66. , base >=4.7 && <5
  67. , containers
  68. , heredoc
  69. , hspec
  70. , lens
  71. , split
  72. , text
  73. default-language: Haskell2010
  74. test-suite aoc2022-test
  75. type: exitcode-stdio-1.0
  76. main-is: Spec.hs
  77. other-modules:
  78. Day1Spec
  79. Day2Spec
  80. Day3Spec
  81. Day4Spec
  82. Paths_aoc2022
  83. hs-source-dirs:
  84. test
  85. 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
  86. build-depends:
  87. QuickCheck
  88. , Ranged-sets
  89. , aoc2022
  90. , base >=4.7 && <5
  91. , containers
  92. , heredoc
  93. , hspec
  94. , lens
  95. , split
  96. , text
  97. default-language: Haskell2010