Files
advent-of-code-2022/aoc2022.cabal
Jens Kadenbach 71972e30ec Day 2
2022-12-02 16:18:26 +01:00

82 lines
2.1 KiB
Plaintext

cabal-version: 1.12
-- This file has been generated from package.yaml by hpack version 0.35.0.
--
-- see: https://github.com/sol/hpack
name: aoc2022
version: 0.1.0.0
description: Please see the README on GitHub at <https://github.com/audax/aoc2022#readme>
homepage: https://github.com/audax/aoc2022#readme
bug-reports: https://github.com/audax/aoc2022/issues
author: Jens Kadenbach
maintainer: jens.kadenbach@smartsteuer.de
copyright: 2022 Jens Kadenbach
license: BSD3
license-file: LICENSE
build-type: Simple
extra-source-files:
README.md
CHANGELOG.md
source-repository head
type: git
location: https://github.com/audax/aoc2022
library
exposed-modules:
Day1
Day1.Internal
Day2
Day2.Part1
Day2.Part2
Day2.Shared
Lib
other-modules:
Paths_aoc2022
hs-source-dirs:
src
ghc-options: -Wall -Wcompat -Widentities -Wincomplete-record-updates -Wincomplete-uni-patterns -Wmissing-export-lists -Wmissing-home-modules -Wpartial-fields -Wredundant-constraints
build-depends:
QuickCheck
, base >=4.7 && <5
, hspec
, split
, text
default-language: Haskell2010
executable aoc2022-exe
main-is: Main.hs
other-modules:
Paths_aoc2022
hs-source-dirs:
app
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
build-depends:
QuickCheck
, aoc2022
, base >=4.7 && <5
, hspec
, split
, text
default-language: Haskell2010
test-suite aoc2022-test
type: exitcode-stdio-1.0
main-is: Spec.hs
other-modules:
Day1Spec
Day2Spec
Paths_aoc2022
hs-source-dirs:
test
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
build-depends:
QuickCheck
, aoc2022
, base >=4.7 && <5
, hspec
, split
, text
default-language: Haskell2010