-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcrypto-rng-effectful.cabal
89 lines (69 loc) · 2.75 KB
/
crypto-rng-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
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
cabal-version: 2.4
build-type: Simple
name: crypto-rng-effectful
version: 1.0.0.0
license: MIT
license-file: LICENSE
category: Crypto
maintainer: [email protected]
author: Andrzej Rybczak, Dominik Peteler, Hécate Moonlight
synopsis: Adaptation of the crypto-rng library for the effectful ecosystem.
description: Adaptation of the @<https://hackage.haskell.org/package/crypto-rng crypto-rng>@ library for the @<https://hackage.haskell.org/package/effectful effectful>@ ecosystem.
extra-source-files:
CHANGELOG.md
README.md
tested-with: GHC ==8.8.4 || ==8.10.7 || ==9.0.2 || ==9.2.8 || ==9.4.7 || ==9.6.3
|| ==9.8.1
bug-reports: https://github.com/haskell-effectful/crypto-rng-effectful/issues
source-repository head
type: git
location: https://github.com/haskell-effectful/crypto-rng-effectful
common language
ghc-options: -Wall -Wcompat -Wno-unticked-promoted-constructors
default-language: Haskell2010
default-extensions: BangPatterns
ConstraintKinds
DataKinds
DeriveFunctor
DeriveGeneric
DerivingStrategies
FlexibleContexts
FlexibleInstances
GADTs
GeneralizedNewtypeDeriving
LambdaCase
MultiParamTypeClasses
NoStarIsType
RankNTypes
RoleAnnotations
ScopedTypeVariables
StandaloneDeriving
TupleSections
TypeApplications
TypeFamilies
TypeOperators
library
import: language
build-depends: base >= 4.13 && < 5
, bytestring >= 0.10.8
, crypto-rng >= 0.3 && < 0.4
, effectful-core >= 1.0.0.0 && < 3.0.0.0
, random >= 1.1 && < 1.3
hs-source-dirs: src
exposed-modules: Effectful.Crypto.RNG
Effectful.Crypto.RNG.Unsafe
other-modules: Effectful.Crypto.RNG.Effect
test-suite test
import: language
ghc-options: -threaded -rtsopts -with-rtsopts=-N4
build-depends: base
, bytestring
, crypto-rng
, effectful-core
, crypto-rng-effectful
, tasty
, tasty-hunit
hs-source-dirs: tests
type: exitcode-stdio-1.0
main-is: Main.hs
other-modules: Utils