1
1
mirror of https://github.com/Yvee1/hascard.git synced 2024-11-22 12:51:58 +03:00
hascard/package.yaml

73 lines
2.3 KiB
YAML

name: hascard
version: 0.5.0.3.1
github: "Yvee1/hascard"
license: BSD3
author: "Steven van den Broek"
maintainer: "stevenvdb@live.nl"
copyright: "2022 Steven van den Broek"
extra-source-files:
- README.md
- ChangeLog.md
# Metadata used when publishing your package
synopsis: A TUI for reviewing notes using 'flashcards' written with markdown-like syntax.
category: Application
# 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: Hascard is a text-based user interface for reviewing notes using flashcards. Cards are written in markdown-like syntax. Please see the README file on GitHub at <https://github.com/Yvee1/hascard#readme> for more information.
dependencies:
- base >= 4.7 && < 5
- brick >= 2.3.1 && < 3.0
- containers > 0.6.0 && < 0.8
- directory >= 1.3.3 && < 1.4
- filepath >= 1.4.2 && < 1.5
- microlens >= 0.4.11 && < 0.5
- microlens-platform >= 0.4.1 && < 0.5
- mwc-random >= 0.14 && < 0.16
- optparse-applicative >= 0.18.0 && < 0.19
- ordered-containers >= 0.2.2 && < 0.3
- megaparsec >= 8.0.0 && < 10
- process >= 1.6.5 && < 1.7
- random-fu >= 0.2.7 && < 0.4
- strict >= 0.3.2 && < 0.6
- text >= 2.0 && < 3.0
- vector >= 0.12.0 && < 0.14
- vty >= 6.0 && < 7.0
- vty-crossplatform >= 0.2 && < 0.5
- word-wrap >= 0.4.1 && < 0.6
- tasty >= 1.2.1 && < 1.5
- tasty-hunit >= 0.10.0 && < 0.11
- tasty-quickcheck >= 0.10.1 && < 0.11
- split >= 0.2.3 && < 0.3
- mtl >= 2.2 && < 2.4
- extra >= 1.7 && < 1.8
library:
source-dirs: src
executables:
hascard:
main: Main.hs
source-dirs: app
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- hascard
tests:
hascard-test:
main: Spec.hs
source-dirs: test
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- hascard