-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.yaml
More file actions
78 lines (68 loc) · 1.44 KB
/
Copy pathpackage.yaml
File metadata and controls
78 lines (68 loc) · 1.44 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
name: backwords
version: 0.1.0.0
author: "Alex Dixon"
maintainer: "alexander.dixon@warwick.ac.uk"
copyright: "2026 Alex Dixon"
extra-source-files:
- assets/words.txt
description: "Haskell implementation of word game Wordle, used as coursework for CS141 Functional Programming at the University of Warwick."
language: GHC2021
dependencies:
- base >= 4.7 && < 5
- containers
- file-embed
- random
- bytestring
- bytestring-trie
- parallel
- random-shuffle
default-extensions:
- TypeSynonymInstances
- FlexibleInstances
- RecordWildCards
- LambdaCase
library:
source-dirs: src
executables:
backwords-tui:
main: Main.hs
source-dirs: app
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
- -O2
dependencies:
- backwords
- brick
- text
- ansi-terminal
- vty
- vty-crossplatform
- containers
when:
- condition: false
other-modules: Paths_backwords
tests:
backwords-test:
main: Spec.hs
source-dirs: test
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
- -O2
dependencies:
- backwords
- tasty
- tasty-hunit
- tasty-quickcheck
- QuickCheck
- ansi-terminal
- bytestring
- SHA
- containers
- split
when:
- condition: false
other-modules: Paths_backwords