-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcrypto-rng.cabal
45 lines (37 loc) · 1.53 KB
/
crypto-rng.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
name: crypto-rng
version: 0.3.0.2
synopsis: Cryptographically secure random number generator.
description: Convenient wrapper for the source of random bytes
provided by the @entropy@ package.
homepage: https://github.com/scrive/crypto-rng
license: BSD3
license-file: LICENSE
author: Scrive AB
maintainer: Andrzej Rybczak <anrzej.rybczak@scrive.com>
copyright: Scrive AB
category: Crypto
build-type: Simple
tested-with: GHC ==8.8.4 || ==8.10.7 || ==9.0.2 || ==9.2.8 || ==9.4.8 || ==9.6.3
|| ==9.8.1
extra-source-files: ChangeLog.md
cabal-version: >=1.10
source-repository head
type: git
location: https://github.com/scrive/crypto-rng.git
library
ghc-options: -Wall -Wcompat
exposed-modules: Crypto.RNG
Crypto.RNG.Class
Crypto.RNG.Utils
Crypto.RNG.Unsafe
build-depends: base >= 4.13 && < 5
, bytestring >= 0.10.8
, entropy >= 0.4
, exceptions >= 0.8.3
, monad-control >= 1.0.1
, mtl >= 2.2
, primitive >= 0.7
, random >= 1.2 && <1.3
, transformers-base >= 0.4.4
hs-source-dirs: src
default-language: Haskell2010