-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.yaml
48 lines (44 loc) · 1.51 KB
/
package.yaml
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
name: TLT
version: 0.6.0.0
github: "jphmrst/TLT"
license: LGPL-3
author: "John Maraist"
maintainer: "[email protected]"
copyright: "2022,2023 John Maraist"
category: Test
synopsis: "Testing in monads and transformers without standalone static specs"
description: "A quick-and-dirty unit test system without test specifications, motivated by easy examination of intermediate results of computations in monad transformers. See the GitHub repository <https://github.com/jphmrst/TLT/> for documentation, or the Haddock page for additional examples."
extra-source-files:
- README.md
- ChangeLog.md
dependencies:
- base (>= 4.14.1 && < 4.15) || (>= 4.15.1 && < 4.16) || (>= 4.16.0 && < 4.17) || (>= 4.17.0 && < 4.18) || (>= 4.18.0 && < 4.19)
- transformers (>= 0.5.6 && < 0.6) || (>= 0.6.1 && < 0.7)
- ansi-terminal >= 0.11.1 && < 0.12
- STMonadTrans >= 0.4.6 && < 0.5
- resourcet (>= 1.2.4 && < 1.3) || (>= 1.3.0 && < 1.4)
- free >= 5.1.7 && < 5.2
- mtl (>= 2.2.2 && < 2.3) || (>= 2.3.1 && < 2.4)
- exceptions >= 0.10.0 && < 0.11
library:
source-dirs: src
executables:
TLT-exe:
main: Failing.hs
source-dirs: app
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- TLT
tests:
TLT-test-fail:
main: Passing.hs
source-dirs: test
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- TLT