garnet/haskell/aoc.cabal

58 lines
1.1 KiB
Plaintext
Raw Normal View History

2025-12-02 00:32:49 +00:00
cabal-version: 3.0
name: aoc
version: 0.1.0.0
license-file: LICENSE
author: George Thomas
maintainer: georgefsthomas@gmail.com
executable aoc
main-is: Main.hs
hs-source-dirs: .
2025-12-02 15:19:11 +00:00
other-modules:
Puzzle
Puzzles.Day1
Puzzles.Day2
2025-12-03 11:18:04 +00:00
Puzzles.Day3
2025-12-02 00:32:49 +00:00
default-language: GHC2024
2025-12-02 01:37:59 +00:00
default-extensions:
BlockArguments
2025-12-02 02:01:37 +00:00
DuplicateRecordFields
2025-12-03 14:40:04 +00:00
LexicalNegation
2025-12-02 01:37:59 +00:00
MultiWayIf
2025-12-02 11:20:48 +00:00
NamedFieldPuns
2025-12-03 14:40:04 +00:00
NegativeLiterals
2025-12-02 02:01:37 +00:00
NoFieldSelectors
2025-12-03 14:40:04 +00:00
NoMonomorphismRestriction
2025-12-02 02:01:37 +00:00
OverloadedRecordDot
2025-12-02 08:23:53 +00:00
OverloadedStrings
2025-12-02 11:20:00 +00:00
RecordWildCards
2025-12-02 01:37:59 +00:00
ViewPatterns
2025-12-02 00:32:49 +00:00
ghc-options:
-Wall
2025-12-03 14:40:12 +00:00
-fdefer-type-errors
2025-12-02 00:32:49 +00:00
build-depends:
base >= 4.14,
2025-12-02 00:58:46 +00:00
async,
base,
binary,
bytestring,
colour,
containers,
deepseq,
2025-12-02 00:58:46 +00:00
directory,
exceptions,
extra,
filepath,
megaparsec,
2025-12-03 17:13:47 +00:00
monad-loops,
2025-12-02 00:58:46 +00:00
mtl,
pretty-simple,
safe,
stm,
2025-12-02 08:23:53 +00:00
tasty-golden,
tasty-hunit,
2025-12-02 15:05:31 +00:00
tasty,
text,
2025-12-02 00:58:46 +00:00
time,
transformers,