-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrandom-string.cabal
30 lines (28 loc) · 1.1 KB
/
random-string.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
-- Initial random-string.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: random-string
version: 0.1.0.1
synopsis: Generate a random base 16, 58, or 64 string
description: Uses the fastest strong random available for a random
string of the given base and length (in bytes of entropy).
license: BSD3
license-file: LICENSE
author: Thomas M. DuBuisson
maintainer: [email protected]
copyright: Galois 2018
category: Data
build-type: Simple
extra-source-files: ChangeLog.md
cabal-version: >=1.10
library
exposed-modules: System.RandomString
-- other-modules:
-- other-extensions:
build-depends: base >=4.10 && <5
, bytestring >=0.10 && <0.11
, base16-bytestring
, base58-bytestring
, base64-bytestring
, entropy >= 0.4 && < 0.5
hs-source-dirs: src
default-language: Haskell2010