forked from Kleidukos/get-tested
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathget-tested.cabal
68 lines (61 loc) · 1.8 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
cabal-version: 3.4
name: get-tested
version: 0.1.3.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 Moonlight
maintainer: [email protected]
tested-with: GHC ==9.2.4
-- copyright:
category: Development
build-type: Simple
extra-doc-files: CHANGELOG.md
executable get-tested
main-is: Main.hs
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
"-with-rtsopts=-N -T"
default-extensions:
NoStarIsType
DataKinds
DeriveAnyClass
DerivingStrategies
DerivingVia
DuplicateRecordFields
LambdaCase
OverloadedLabels
OverloadedRecordDot
OverloadedStrings
PackageImports
PolyKinds
QuasiQuotes
RecordWildCards
StrictData
TypeFamilies
ViewPatterns
other-modules:
Extract
Types
build-depends:
, aeson ^>=2.1
, base ^>=4.16
, bytestring ^>=0.11
, Cabal-syntax ^>=3.8
, containers ^>=0.6
, directory ^>=1.3
, effectful-core ^>=2.2
, filepath ^>=1.4
, optparse-applicative ^>=0.17
, text ^>=2.0
, text-display ^>=0.0
, vector ^>=0.13
hs-source-dirs: app
default-language: GHC2021