-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathtasty-html.cabal
66 lines (61 loc) · 1.79 KB
/
tasty-html.cabal
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
name: tasty-html
version: 0.4.2.2
synopsis: Render tasty output to HTML
description: A tasty ingredient to output test results in HTML5.
license: MIT
license-file: LICENSE
author: Danny Navarro, Roman Cheplyaka, Chris Catalfo, Owen Shepherd
maintainer: [email protected], [email protected]
homepage: https://github.com/feuerbach/tasty-html
category: Testing
build-type: Simple
extra-source-files: README.md, CHANGELOG.md
cabal-version: >=1.10
data-files:
data/tasty.js
data/tasty.css
source-repository head
type: git
location: git://github.com/feuerbach/tasty-html.git
executable tasty-html-fail
default-language: Haskell98
main-is: fail.hs
hs-source-dirs: examples
ghc-options: -Wall
build-depends:
base >= 4.5 && < 5,
tasty >= 0.5 && < 2,
tasty-hunit >= 0.1 && < 1,
tasty-smallcheck >= 0.1 && < 1,
tasty-quickcheck >= 0.1 && < 1,
tasty-html
executable tasty-html-pass
default-language: Haskell98
main-is: pass.hs
hs-source-dirs: examples
ghc-options: -Wall
build-depends:
base >= 4.5 && < 5,
tasty >= 0.5 && < 2,
tasty-hunit >= 0.1 && < 1,
tasty-smallcheck >= 0.1 && < 1,
tasty-quickcheck >= 0.1 && < 1,
tasty-html
library
default-language: Haskell98
exposed-modules: Test.Tasty.Runners.Html
other-modules: Paths_tasty_html
build-depends:
base >= 4.5 && < 5,
bytestring >= 0.10 && < 1,
containers >= 0.5.0.0 && < 1,
generic-deriving >= 1.6.2 && < 2,
mtl >= 2.1.2 && < 3,
stm >= 2.4.2 && < 3,
semigroups >= 0.1 && < 1,
tagged >= 0.7 && < 1,
tasty >= 1.5 && < 1.6,
text >= 1.0 && < 3,
transformers >= 0.3.0.0 && < 1,
blaze-html >= 0.7 && < 1
ghc-options: -Wall