packages feed

random-string-0.1.0.1: random-string.cabal

-- 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:          tommd@galois.com
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