-
Notifications
You must be signed in to change notification settings - Fork 7
/
goldplate.cabal
81 lines (72 loc) · 2.27 KB
/
goldplate.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
Name: goldplate
Version: 0.2.2.1
Synopsis: A lightweight golden test runner
License: Apache-2.0
License-file: LICENSE
Author: Jasper Van der Jeugt <[email protected]>
Maintainer: Jasper Van der Jeugt, Andreas Abel
Copyright: 2019-2021 Fugue, Inc
Homepage: https://github.com/jaspervdj/goldplate
Bug-reports: https://github.com/jaspervdj/goldplate/issues
Category: Language
Build-type: Simple
Cabal-version: 1.18
Description: Language-agnostic golden test runner for command-line applications.
Tested-with:
GHC == 9.10.1
GHC == 9.8.2
GHC == 9.6.5
GHC == 9.4.8
GHC == 9.2.8
GHC == 9.0.2
GHC == 8.10.7
GHC == 8.8.4
GHC == 8.6.5
GHC == 8.4.4
Extra-source-files:
CHANGELOG.md
README.md
Source-repository head
type: git
location: https://github.com/jaspervdj/goldplate.git
Source-repository this
type: git
location: https://github.com/jaspervdj/goldplate.git
tag: v0.2.1.1
Library
Hs-source-dirs: src
Default-language: Haskell2010
Ghc-options: -Wall
Exposed-modules: Goldplate
Other-modules:
Text.Regex.PCRE.Simple
Text.Splice
Paths_goldplate
Build-depends:
aeson >= 1.4 && < 2.3,
aeson-pretty >= 0.8 && < 0.9,
async >= 2.2 && < 2.3,
base >= 4.11 && < 5,
bytestring >= 0.10 && < 0.13,
Diff >= 0.3 && < 0.6,
directory >= 1.3 && < 1.4,
filepath >= 1.4 && < 1.6,
Glob >= 0.10 && < 0.11,
optparse-applicative >= 0.14 && < 0.19,
process >= 1.6 && < 1.7,
regex-pcre-builtin >= 0.95.1.3 && < 0.96,
text >= 1.2 && < 2.2,
unordered-containers >= 0.2 && < 0.3
Executable goldplate
Main-is: Main.hs
Default-language: Haskell2010
Ghc-options: -Wall -rtsopts -threaded
Build-depends: base, goldplate
Test-suite tests
Default-language: Haskell2010
Type: exitcode-stdio-1.0
Ghc-options: -Wall -threaded
Main-is: Tests.hs
Build-tool-depends: goldplate:goldplate
Hs-source-dirs: tests
Build-depends: aeson, base, bytestring, goldplate, process