Day thirteen
This commit is contained in:
49
day-13-haskell/package.yaml
Normal file
49
day-13-haskell/package.yaml
Normal file
@@ -0,0 +1,49 @@
|
||||
name: day13-haskell
|
||||
version: 0.1.0.0
|
||||
github: "githubuser/day13-haskell"
|
||||
license: BSD-3-Clause
|
||||
author: "Author name here"
|
||||
maintainer: "example@example.com"
|
||||
copyright: "2024 Author name here"
|
||||
spec-version: 0.36.0
|
||||
|
||||
dependencies:
|
||||
- base >= 4.7 && < 5
|
||||
|
||||
ghc-options:
|
||||
- -Wall
|
||||
- -Wcompat
|
||||
- -Widentities
|
||||
- -Wincomplete-record-updates
|
||||
- -Wincomplete-uni-patterns
|
||||
- -Wmissing-export-lists
|
||||
- -Wmissing-home-modules
|
||||
- -Wpartial-fields
|
||||
- -Wredundant-constraints
|
||||
|
||||
library:
|
||||
source-dirs: src
|
||||
dependencies:
|
||||
- flow
|
||||
|
||||
executables:
|
||||
day13-haskell-exe:
|
||||
main: Main.hs
|
||||
source-dirs: app
|
||||
ghc-options:
|
||||
- -threaded
|
||||
- -rtsopts
|
||||
- -with-rtsopts=-N
|
||||
dependencies:
|
||||
- day13-haskell
|
||||
|
||||
tests:
|
||||
day13-haskell-test:
|
||||
main: Spec.hs
|
||||
source-dirs: test
|
||||
ghc-options:
|
||||
- -threaded
|
||||
- -rtsopts
|
||||
- -with-rtsopts=-N
|
||||
dependencies:
|
||||
- day13-haskell
|
||||
Reference in New Issue
Block a user