-
Notifications
You must be signed in to change notification settings - Fork 0
/
fused-effects-random.cabal
61 lines (57 loc) · 1.7 KB
/
fused-effects-random.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
cabal-version: 3.0
name: fused-effects-random
version: 1.1.0.1
synopsis: Random number generation for fused-effects.
description: Random number generation as an effect using fused-effects.
homepage: https://github.com/fused-effects/fused-effects-random
bug-reports: https://github.com/fused-effects/fused-effects-random/issues
license: BSD-3-Clause
license-file: LICENSE
author: Rob Rix
maintainer: [email protected]
copyright: 2019-2024 Rob Rix
category: Control
build-type: Simple
extra-doc-files:
CHANGELOG.md
README.md
common common
default-language: Haskell2010
ghc-options:
-Weverything
-Wno-all-missed-specialisations
-Wno-implicit-prelude
-Wno-missed-specialisations
-Wno-missing-import-lists
-Wno-missing-local-signatures
-Wno-monomorphism-restriction
-Wno-name-shadowing
-Wno-safe
-Wno-unsafe
if (impl(ghc >= 8.8))
ghc-options: -Wno-missing-deriving-strategies
if (impl(ghc >= 8.10))
ghc-options:
-Wno-missing-safe-haskell-mode
-Wno-prepositive-qualified-module
if (impl(ghc >= 9.2))
ghc-options:
-Wno-missing-kind-signatures
if (impl(ghc >= 9.8))
ghc-options:
-Wno-missing-role-annotations
-Wno-term-variable-capture
library
import: common
exposed-modules:
Control.Carrier.Random.Gen
Control.Effect.Random
build-depends:
, base >=4.10 && < 5
, fused-effects ^>= 1.1
, random >= 1.1 && < 1.3
, transformers >= 0.4 && < 0.7
hs-source-dirs: src
source-repository head
type: git
location: https://github.com/fused-effects/fused-effects-random