-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoutput.cabal
More file actions
90 lines (86 loc) · 2.58 KB
/
output.cabal
File metadata and controls
90 lines (86 loc) · 2.58 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
cabal-version: 3.0
name: output
version: 0.1.0.0
license: Apache-2.0
license-file: LICENSE
author: Max Emil Yoon Blomstervall
maintainer: max.blomstervall@gmail.com
category: Education
synopsis: Korean language learning application focused on output (reading, writing, typing)
homepage: https://github.com/fulsomenko/output
bug-reports: https://github.com/fulsomenko/output/issues
source-repository head
type: git
location: https://github.com/fulsomenko/output.git
common warnings
ghc-options: -Wall -Wcompat -Wincomplete-record-updates -Wincomplete-uni-patterns -Wredundant-constraints
library
import: warnings
exposed-modules:
Output.Domain.Types
Output.Domain.Activity
Output.Domain.Progress
Output.Domain.Exercise
Output.Domain.Session
Output.Domain.Jamo
Output.Domain.TypingLevel
Output.Domain.TypingWord
Output.Domain.TypingExercise
Output.Repository.Class
Output.Repository.Json
Output.Repository.Memory
Output.Algorithm.SRS
Output.Algorithm.SpacedRepetition
Output.Algorithm.ExerciseGen
Output.Algorithm.Streak
Output.CLI
Output.App
Output.TUI.Types
Output.TUI.App
Output.TUI.Draw
Output.TUI.Events
Output.TUI.Widgets.Keyboard
Output.TUI.Widgets.TypingPractice
build-depends:
base >=4.16 && <5,
aeson >=2.0,
bytestring >=0.11,
containers >=0.6,
text >=1.2,
time >=1.9,
filepath >=1.4,
directory >=1.3,
brick >=2.0,
vty >=6.0,
vty-unix >=0.2,
vty-crossplatform >=0.4
hs-source-dirs: src
default-language: Haskell2010
executable output
import: warnings
main-is: Main.hs
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-depends:
base >=4.16 && <5,
output,
optparse-applicative >=0.17,
text >=1.2,
time >=1.9
hs-source-dirs: app
default-language: Haskell2010
test-suite output-test
import: warnings
type: exitcode-stdio-1.0
main-is: Main.hs
build-depends:
base >=4.16 && <5,
output,
hspec >=2.9,
time >=1.9,
containers >=0.6,
text >=1.2
hs-source-dirs: test
default-language: Haskell2010
other-modules:
Output.Algorithm.SpacedRepetitionSpec
Output.Algorithm.StreakSpec