35 lines
709 B
YAML
35 lines
709 B
YAML
|
name: day03b
|
||
|
version: 0.1.0.0
|
||
|
author: "Natty"
|
||
|
maintainer: "natty.sh.git@gmail.com"
|
||
|
copyright: "2023 Natty"
|
||
|
|
||
|
description: Please see the README at <https://git.astolfo.cool/natty/aoc23#readme>
|
||
|
|
||
|
dependencies:
|
||
|
- base >= 4.7 && < 5
|
||
|
- megaparsec
|
||
|
- containers
|
||
|
- text
|
||
|
- pretty-simple
|
||
|
- extra
|
||
|
|
||
|
ghc-options:
|
||
|
- -Wall
|
||
|
- -Wcompat
|
||
|
- -Widentities
|
||
|
- -Wincomplete-record-updates
|
||
|
- -Wincomplete-uni-patterns
|
||
|
- -Wmissing-export-lists
|
||
|
- -Wmissing-home-modules
|
||
|
- -Wpartial-fields
|
||
|
- -Wredundant-constraints
|
||
|
|
||
|
executables:
|
||
|
day03b:
|
||
|
main: Main.hs
|
||
|
source-dirs: src
|
||
|
ghc-options:
|
||
|
- -threaded
|
||
|
- -rtsopts
|
||
|
- -with-rtsopts=-N
|