-
Notifications
You must be signed in to change notification settings - Fork 3
/
get-tested.cabal
112 lines (99 loc) · 2.74 KB
/
get-tested.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
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
cabal-version: 3.4
name: get-tested
version: 0.1.8.1
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.10.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
common rts-options
ghc-options: -rtsopts -threaded "-with-rtsopts=-N -T"
library
import: extensions
import: ghc-options
hs-source-dirs: src
-- cabal-fmt: expand 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 ^>=2.3
, effectful-core ^>=2.3
, nonempty-vector ^>=0.2.3
, text ^>=2.1
, text-display ^>=0.0.1
, 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
, bytestring ^>=0.11
, effectful ^>=2.3
, effectful-core ^>=2.3
, get-tested
, optparse-applicative ^>=0.18
, text ^>=2.1
, text-display ^>=0.0.1
, 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
, effectful-core
, get-tested
, tasty
, tasty-hunit
, tasty-test-reporter
, vector