2020-01-20 12:07:16 +03:00
name : hascard
2022-07-08 13:19:43 +03:00
version : 0.5 .0 .3 .1
2020-01-20 12:07:16 +03:00
github : "Yvee1/hascard"
license : BSD3
author : "Steven van den Broek"
maintainer : "stevenvdb@live.nl"
2022-07-08 13:19:43 +03:00
copyright : "2022 Steven van den Broek"
2020-01-20 12:07:16 +03:00
extra-source-files :
- README.md
- ChangeLog.md
# Metadata used when publishing your package
2020-07-18 20:58:57 +03:00
synopsis : A TUI for reviewing notes using 'flashcards' written with markdown-like syntax.
2020-07-18 20:29:11 +03:00
category : Application
2020-01-20 12:07:16 +03:00
# 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.
2020-07-20 22:08:28 +03:00
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.
2020-01-20 12:07:16 +03:00
dependencies :
2020-09-09 23:48:21 +03:00
- base >= 4.7 && < 5
2023-12-17 15:01:03 +03:00
- brick >= 2.1.1 && < 3.0
- containers > 0.6.0 && < 0.8
2020-09-09 23:48:21 +03:00
- 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
2022-06-25 21:53:53 +03:00
- mwc-random >= 0.14 && < 0.16
2023-12-17 15:01:03 +03:00
- optparse-applicative >= 0.18.0 && < 0.19
2020-09-09 23:48:21 +03:00
- ordered-containers >= 0.2.2 && < 0.3
2021-02-16 19:59:19 +03:00
- megaparsec >= 8.0.0 && < 10
2020-09-09 23:48:21 +03:00
- process >= 1.6.5 && < 1.7
2022-06-25 21:53:53 +03:00
- random-fu >= 0.2.7 && < 0.4
2023-12-17 15:01:03 +03:00
- 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
2022-06-25 21:53:53 +03:00
- word-wrap >= 0.4.1 && < 0.6
- tasty >= 1.2.1 && < 1.5
2020-09-09 23:48:21 +03:00
- tasty-hunit >= 0.10.0 && < 0.11
- tasty-quickcheck >= 0.10.1 && < 0.11
- split >= 0.2.3 && < 0.3
2023-05-17 22:07:30 +03:00
- mtl >= 2.2 && < 2.4
- extra >= 1.7 && < 1.8
2020-01-20 12:07:16 +03:00
library :
source-dirs : src
executables :
2020-07-18 15:07:02 +03:00
hascard :
2020-01-20 12:07:16 +03:00
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