packages feed

system-random-effect-0.2.0: system-random-effect.cabal

name:                system-random-effect
version:             0.2.0
synopsis:            Random number generation for extensible effects.
homepage:            https://github.com/wowus/system-random-effect
license:             BSD3
license-file:        LICENSE
author:              Clark Gaebel
maintainer:          cgaebel@uwaterloo.ca
category:            System
build-type:          Simple
cabal-version:       >=1.10

library
  hs-source-dirs:      src/
  ghc-options:         -Wall
  exposed-modules:     System.Random.Effect

  build-depends:       base == 4.6.*
                     , extensible-effects == 1.1.*
                     , mersenne-random-pure64 == 0.2.*
                     , statistics == 0.10.*
                     , vector == 0.10.*
                     , vector-algorithms == 0.5.*

  default-language:    Haskell2010

test-suite extensible-effects-tests
  type: exitcode-stdio-1.0
  main-is: Test.hs
  hs-source-dirs: test/

  ghc-options: -rtsopts=all -threaded

  build-depends:       base == 4.6.*
                     , QuickCheck == 2.*
                     , HUnit == 1.2.*
                     , test-framework == 0.8.*
                     , test-framework-hunit == 0.3.*
                     , test-framework-quickcheck2 == 0.3.*
                     , extensible-effects == 1.1.*
                     , system-random-effect

  default-language:    Haskell2010

source-repository head
  type: git
  location: https://github.com/wowus/system-random-effect