name: rng-utils version: 0.3.0 synopsis: RNG within an IORef for convenient concurrent use description: rng-utils aims to make it easy to generate an RNG and safely use it concurrently. license: BSD3 license-file: LICENSE author: Ozgun Ataman, Snap Framework Authors maintainer: ozgun.ataman@soostone.com category: Data, Random build-type: Simple cabal-version: >=1.10 homepage: https://bitbucket.org/soostone/rng-utils bug-reports: https://bitbucket.org/soostone/rng-utils/issues extra-source-files: README.md changelog.md bench/*.hs flag lib-Werror default: False manual: True library exposed-modules: Data.RNG hs-source-dirs: src default-language: Haskell2010 build-depends: base >= 4.5 && < 5, bytestring, random if flag(lib-Werror) ghc-options: -Werror ghc-options: -Wall benchmark bench type: exitcode-stdio-1.0 main-is: Main.hs hs-source-dirs: bench default-language: Haskell2010 build-depends: base , criterion , rng-utils if flag(lib-Werror) ghc-options: -Werror ghc-options: -Wall test-suite test type: exitcode-stdio-1.0 main-is: Main.hs hs-source-dirs: test default-language: Haskell2010 build-depends: base , tasty , hedgehog , tasty-hedgehog , rng-utils , bytestring if flag(lib-Werror) ghc-options: -Werror ghc-options: -Wall source-repository head type: git location: git@bitbucket.org:soostone/rng-utils.git