Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

aoc2022.cabal 2.3KB

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