lisa/package.yaml
2022-09-08 20:10:41 +02:00

62 lines
1.3 KiB
YAML

name: lisa
version: 0.1.0.0
github: "pbrinkmeier/lisa"
license: BSD3
author: "Paul Brinkmeier"
maintainer: "hallo@pbrinkmeier.de"
copyright: "Paul Brinkmeier (c) 2021"
extra-source-files:
- README.md
- ChangeLog.md
# Metadata used when publishing your package
# synopsis: Short description of your package
# category: Web
# 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/pbrinkmeier/lisa#readme>
dependencies:
- base >= 4.7 && < 5
- aeson >= 2.0
- blaze-html >= 0.9
- http-api-data >= 0.4
- http-types >= 0.12
- pretty-simple >= 4.1
- req >= 3.10
- Spock >= 0.14
- text >= 1.0
- time >= 1.11
- wai >= 3.2
library:
source-dirs: src
ghc-options:
- -W
executables:
lisa-exe:
main: Main.hs
source-dirs: app
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- lisa
- Spock >= 0.14
tests:
lisa-test:
main: Spec.hs
source-dirs: test
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- lisa