-
Notifications
You must be signed in to change notification settings - Fork 223
/
Copy pathstd-gen-seed.cabal
64 lines (56 loc) · 1.36 KB
/
std-gen-seed.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
cabal-version: 3.0
name: std-gen-seed
version: 0.2024.9.3
synopsis: Support for standard random number generator seeds
license: Apache-2.0
author: Cardano Foundation (High Assurance Lab)
maintainer: [email protected]
build-type: Simple
common language
default-language: Haskell2010
default-extensions:
NoImplicitPrelude
OverloadedStrings
common opts-lib
ghc-options: -Wall -Wcompat -fwarn-redundant-constraints
if flag(release)
ghc-options: -O2 -Werror
common opts-exe
ghc-options: -threaded -rtsopts -Wall
if flag(release)
ghc-options: -O2 -Werror
flag release
description: Enable optimization and `-Werror`
default: False
manual: True
library
import: language, opts-lib
exposed-modules:
System.Random.StdGenSeed
hs-source-dirs: src
build-depends:
, base
, random
, MonadRandom
, OddWord
, quiet
, splitmix
test-suite unit
import: language, opts-exe
ghc-options: -with-rtsopts=-M2G -with-rtsopts=-N4
build-depends:
base
, hspec
, QuickCheck
, std-gen-seed
, random
build-tool-depends:
hspec-discover:hspec-discover
type:
exitcode-stdio-1.0
hs-source-dirs:
test/unit
main-is:
std-gen-seed-unit-test.hs
other-modules:
System.Random.StdGenSeedSpec