-
Notifications
You must be signed in to change notification settings - Fork 52
/
random.cabal
83 lines (74 loc) · 1.96 KB
/
random.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
cabal-version: >=1.10
name: random
version: 1.2
license: BSD3
license-file: LICENSE
maintainer: [email protected]
bug-reports: https://github.com/haskell/random/issues
synopsis: random number library
description:
This package provides a basic random number generation
library, including the ability to split random number
generators.
category: System
build-type: Custom
extra-source-files:
README.md
CHANGELOG.md
source-repository head
type: git
location: http://git.haskell.org/packages/random.git
custom-setup
setup-depends:
base -any,
Cabal -any,
cabal-doctest >=1.0.6
library
exposed-modules: System.Random
default-language: Haskell2010
ghc-options: -Wall
build-depends:
base >=4.10 && <5,
bytestring -any,
primitive >= 0.6.4.0 && <8,
mtl -any,
splitmix -any
test-suite legacy
type: exitcode-stdio-1.0
main-is: Legacy.hs
hs-source-dirs: tests
other-modules:
Legacy.T7936
Legacy.TestRandomIOs
Legacy.TestRandomRs
Legacy.Random1283
Legacy.RangeTest
default-language: Haskell2010
ghc-options: -with-rtsopts=-M4M
build-depends:
base -any,
containers -any,
random -any
test-suite doctests
type: exitcode-stdio-1.0
main-is: doctests.hs
hs-source-dirs: tests
default-language: Haskell2010
build-depends:
base -any,
doctest >=0.15,
random -any
test-suite spec
type: exitcode-stdio-1.0
main-is: Spec.hs
hs-source-dirs: tests
other-modules:
Spec.Bitmask
Spec.Range
ghc-options: -Wall
build-depends:
base -any,
random -any,
tasty -any,
tasty-smallcheck -any,
tasty-expected-failure -any