garnet/aoc.cabal

41 lines
766 B
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: app
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-02 01:37:59 +00:00
MultiWayIf
2025-12-02 02:01:37 +00:00
NoFieldSelectors
OverloadedRecordDot
2025-12-02 01:37:59 +00:00
ViewPatterns
2025-12-02 00:32:49 +00:00
ghc-options:
-Wall
build-depends:
base >= 4.14,
2025-12-02 00:58:46 +00:00
async,
base,
binary,
bytestring,
colour,
containers,
directory,
exceptions,
extra,
filepath,
megaparsec,
mtl,
pretty-simple,
safe,
stm,
text,
time,
transformers,