67 lines
1.6 KiB
YAML
67 lines
1.6 KiB
YAML
name: mtlstats
|
|
version: 0.16.1
|
|
license: GPL-3.0-or-later
|
|
author: "Jonathan Lamothe"
|
|
maintainer: "jlamothe1980@gmail.com"
|
|
copyright: "1984, 1985, 2019-2021, 2023 Rhéal Lamothe"
|
|
|
|
extra-source-files:
|
|
- README.md
|
|
- ChangeLog.md
|
|
|
|
# Metadata used when publishing your package
|
|
synopsis: Hockey statistics tracker
|
|
category: Statistics
|
|
|
|
# To avoid duplicated efforts in documentation and dealing with the
|
|
# complications of embedding Haddock markup inside cabal files, it is
|
|
# common to point users to the README.md file.
|
|
description: Please see the README on GitHub at <https://github.com/mtlstats/mtlstats#readme>
|
|
|
|
dependencies:
|
|
- base >= 4.7 && < 5
|
|
- aeson >= 2.0.3.0 && < 2.1
|
|
- bytestring >= 0.11.4.0 && < 0.12
|
|
- brick >= 1.4 && < 1.5
|
|
- containers >= 0.6.0.1 && < 0.7
|
|
- easy-file >= 0.2.2 && < 0.3
|
|
- extra >= 1.7.13 && < 1.8
|
|
- microlens >= 0.4.12.0 && < 0.5
|
|
- microlens-mtl >= 0.2.0.3 && < 0.3
|
|
- microlens-th >= 0.4.2.3 && < 0.5
|
|
- mtl >= 2.2.2 && < 2.3
|
|
- random >= 1.2.1.1 && < 1.3
|
|
- time >= 1.11.1.1 && < 1.12
|
|
- vty >= 5.37 && < 5.38
|
|
|
|
ghc-options:
|
|
- -Wall
|
|
- -Werror
|
|
|
|
library:
|
|
source-dirs: src
|
|
|
|
executables:
|
|
mtlstats:
|
|
main: Main.hs
|
|
source-dirs: app
|
|
ghc-options:
|
|
- -threaded
|
|
- -rtsopts
|
|
- -with-rtsopts=-N
|
|
dependencies:
|
|
- mtlstats
|
|
|
|
tests:
|
|
mtlstats-test:
|
|
main: Spec.hs
|
|
source-dirs: test
|
|
ghc-options:
|
|
- -threaded
|
|
- -rtsopts
|
|
- -with-rtsopts=-N
|
|
dependencies:
|
|
- mtlstats
|
|
- hspec >= 2.9.7 && < 2.10
|
|
- unordered-containers
|