adventOfCode-2022/adventofcode.cabal

41 lines
756 B
Plaintext
Raw Normal View History

2022-12-08 11:26:39 +01:00
cabal-version: 1.12
-- This file has been generated from package.yaml by hpack version 0.34.7.
--
-- see: https://github.com/sol/hpack
name: adventofcode
version: 0.0.0
license: AGPL-3
license-file: LICENSE
build-type: Simple
library
exposed-modules:
AoC.Day1
2022-12-13 16:39:09 +01:00
AoC.Day2
2022-12-08 11:26:39 +01:00
other-modules:
Paths_adventofcode
hs-source-dirs:
src
ghc-options: -Wall
build-depends:
2022-12-13 16:39:09 +01:00
attoparsec
, base ==4.*
2022-12-08 11:26:39 +01:00
, text
default-language: Haskell2010
executable adventofcode
main-is: Main.hs
other-modules:
Paths_adventofcode
hs-source-dirs:
executable
ghc-options: -Wall
build-depends:
adventofcode
2022-12-13 16:39:09 +01:00
, attoparsec
2022-12-08 11:26:39 +01:00
, base ==4.*
, text
default-language: Haskell2010