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.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  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. Lib
  31. other-modules:
  32. Paths_aoc2022
  33. hs-source-dirs:
  34. src
  35. ghc-options: -Wall -Wcompat -Widentities -Wincomplete-record-updates -Wincomplete-uni-patterns -Wmissing-export-lists -Wmissing-home-modules -Wpartial-fields -Wredundant-constraints
  36. build-depends:
  37. QuickCheck
  38. , base >=4.7 && <5
  39. , hspec
  40. , split
  41. , text
  42. default-language: Haskell2010
  43. executable aoc2022-exe
  44. main-is: Main.hs
  45. other-modules:
  46. Paths_aoc2022
  47. hs-source-dirs:
  48. app
  49. 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
  50. build-depends:
  51. QuickCheck
  52. , aoc2022
  53. , base >=4.7 && <5
  54. , hspec
  55. , split
  56. , text
  57. default-language: Haskell2010
  58. test-suite aoc2022-test
  59. type: exitcode-stdio-1.0
  60. main-is: Spec.hs
  61. other-modules:
  62. Day1Spec
  63. Day2Spec
  64. Paths_aoc2022
  65. hs-source-dirs:
  66. test
  67. 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
  68. build-depends:
  69. QuickCheck
  70. , aoc2022
  71. , base >=4.7 && <5
  72. , hspec
  73. , split
  74. , text
  75. default-language: Haskell2010