-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathretry-effectful.cabal
58 lines (51 loc) · 1.76 KB
/
retry-effectful.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
cabal-version: 3.0
name: retry-effectful
version: 0.1.0.0
category: Control
stability: experimental
synopsis: Adaptation of the retry library for the effectful ecosystem.
description:
Adaptation of the @<https://hackage.haskell.org/package/retry retry>@ library for the @<https://hackage.haskell.org/package/effectful effectful>@ ecosystem.
bug-reports: https://github.com/change-metrics/retry-effectful/issues
homepage: https://github.com/change-metrics/retry-effectful#readme
author: Tristan de Cacqueray
maintainer: [email protected]
copyright: 2022 Red Hat
license: BSD-3-Clause
license-file: LICENSE.md
build-type: Simple
extra-source-files:
CHANGELOG.md
README.md
source-repository head
type: git
location: https://github.com/change-metrics/retry-effectful
common common
ghc-options:
-Weverything -Wno-redundant-constraints -Wno-implicit-prelude
-Wno-missing-import-lists -Wno-safe -Wno-unsafe
-Wno-missing-safe-haskell-mode -Wno-missing-local-signatures
if impl(ghc >=9.2)
ghc-options: -Wno-missing-kind-signatures
default-language: Haskell2010
library
import: common
hs-source-dirs: src
exposed-modules: Effectful.Retry
build-depends:
, base <5
, effectful-core >=1.0 && <3.0
, exceptions
, retry >=0.9.3
test-suite retry-effectful-test
import: common
ghc-options: -rtsopts -threaded -with-rtsopts=-N
type: exitcode-stdio-1.0
main-is: Main.hs
hs-source-dirs: test
build-depends:
, base <5
, effectful-core >=1.0 && <3.0
, retry-effectful
, tasty ^>=1.4.2
, tasty-hunit ^>=0.10