Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

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