Files
advent-of-code-2022/aoc2022.cabal

112 lines
2.6 KiB
Plaintext
Raw Normal View History

2022-12-01 15:57:27 +01:00
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
2022-12-02 11:53:44 +01:00
Day2
2022-12-02 16:18:26 +01:00
Day2.Part1
Day2.Part2
Day2.Shared
2022-12-05 12:01:00 +01:00
Day3
Day3.Part1
Day3.Part2
Day3.Shared
2022-12-05 13:05:21 +01:00
Day4
Day4.Part1
Day4.Part2
Day4.Shared
2022-12-05 15:49:32 +01:00
Day5
Day5.Part1
2022-12-05 15:59:01 +01:00
Day5.Part2
Day5.Shared
2022-12-01 15:57:27 +01:00
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
2022-12-05 13:05:21 +01:00
, Ranged-sets
2022-12-01 15:57:27 +01:00
, base >=4.7 && <5
2022-12-05 12:01:00 +01:00
, containers
, heredoc
2022-12-01 15:57:27 +01:00
, hspec
2022-12-05 12:01:00 +01:00
, lens
2022-12-01 15:57:27 +01:00
, split
, text
2022-12-05 15:49:32 +01:00
, these
2022-12-01 15:57:27 +01:00
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
2022-12-05 13:05:21 +01:00
, Ranged-sets
2022-12-01 15:57:27 +01:00
, aoc2022
, base >=4.7 && <5
2022-12-05 12:01:00 +01:00
, containers
, heredoc
2022-12-01 15:57:27 +01:00
, hspec
2022-12-05 12:01:00 +01:00
, lens
2022-12-01 15:57:27 +01:00
, split
, text
2022-12-05 15:49:32 +01:00
, these
2022-12-01 15:57:27 +01:00
default-language: Haskell2010
test-suite aoc2022-test
type: exitcode-stdio-1.0
main-is: Spec.hs
other-modules:
2022-12-02 11:53:44 +01:00
Day1Spec
Day2Spec
2022-12-05 12:01:00 +01:00
Day3Spec
2022-12-05 13:05:21 +01:00
Day4Spec
2022-12-05 15:49:32 +01:00
Day5Spec
2022-12-01 15:57:27 +01:00
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
2022-12-05 13:05:21 +01:00
, Ranged-sets
2022-12-01 15:57:27 +01:00
, aoc2022
, base >=4.7 && <5
2022-12-05 12:01:00 +01:00
, containers
, heredoc
2022-12-01 15:57:27 +01:00
, hspec
2022-12-05 12:01:00 +01:00
, lens
2022-12-01 15:57:27 +01:00
, split
, text
2022-12-05 15:49:32 +01:00
, these
2022-12-01 15:57:27 +01:00
default-language: Haskell2010