-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathget-tested.cabal
More file actions
126 lines (115 loc) · 2.46 KB
/
Copy pathget-tested.cabal
File metadata and controls
126 lines (115 loc) · 2.46 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
cabal-version: 3.4
name: get-tested
version: 0.1.10.0
synopsis: Get the tested-with stanza of your Cabal file
-- description:
homepage: https://github.com/Kleidukos/get-tested
license: BSD-3-Clause
license-file: LICENSE
author: Hécate Kleidukos
maintainer: hecate+github@glitchbra.in
tested-with: ghc ==9.14.1
-- copyright:
category: Development
build-type: Simple
extra-doc-files: CHANGELOG.md
common extensions
default-extensions:
DataKinds
DeriveAnyClass
DerivingVia
DuplicateRecordFields
LambdaCase
NoStarIsType
OverloadedRecordDot
OverloadedStrings
PackageImports
RecordWildCards
StrictData
TypeFamilies
default-language: GHC2024
common ghc-options
ghc-options:
-Wall
-Wcompat
-Widentities
-Wincomplete-record-updates
-Wincomplete-uni-patterns
-Wpartial-fields
-Wredundant-constraints
-fhide-source-paths
-Wno-unused-do-bind
-fshow-hole-constraints
-fprint-potential-instances
-Wno-unticked-promoted-constructors
-Werror=unused-imports
-flate-specialise
-funbox-strict-fields
-finline-generics-aggressively
-fexpose-all-unfoldings
-threaded
-Wunused-packages
ghc-prof-options:
-fprof-auto
-fno-prof-count-entries
-fprof-auto-calls
common rts-options
ghc-options:
-rtsopts
-threaded
"-with-rtsopts=-N -T"
library
import: extensions
import: ghc-options
hs-source-dirs: src
-- cabal-gild: discover src/
exposed-modules:
GetTested.CLI.Types
GetTested.Extract
GetTested.Types
build-depends:
aeson ^>=2.2,
base >=4.19,
bytestring >=0.11,
Cabal-syntax >=3.10.3,
effectful,
nonempty-vector ^>=0.2.3,
text ^>=2.1,
text-display ^>=1.0,
vector ^>=0.13,
executable get-tested
import: extensions
import: ghc-options
import: rts-options
main-is: Main.hs
other-modules: Paths_get_tested
build-depends:
aeson ^>=2.2,
base >=4.19 && <4.22,
bytestring >=0.11 && <0.13,
effectful >=2.3 && <2.6,
get-tested,
optparse-applicative ^>=0.18,
text ^>=2.1,
text-display ^>=1.0,
vector ^>=0.13,
hs-source-dirs: app
test-suite get-tested-test
import: extensions
import: ghc-options
import: rts-options
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Main.hs
other-modules:
ExtractTest
Utils
build-depends:
base,
Cabal-syntax,
effectful,
get-tested,
tasty,
tasty-hunit,
tasty-test-reporter,
vector,