33 lines
685 B
YAML
33 lines
685 B
YAML
name: day10b
|
|
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
|
|
|
|
ghc-options:
|
|
- -Wall
|
|
- -Wcompat
|
|
- -Widentities
|
|
- -Wincomplete-record-updates
|
|
- -Wincomplete-uni-patterns
|
|
- -Wmissing-export-lists
|
|
- -Wmissing-home-modules
|
|
- -Wpartial-fields
|
|
- -Wredundant-constraints
|
|
|
|
executables:
|
|
day10b:
|
|
main: Main.hs
|
|
source-dirs: src
|
|
ghc-options:
|
|
- -threaded
|
|
- -rtsopts
|
|
- -with-rtsopts=-N |