-
Notifications
You must be signed in to change notification settings - Fork 9
/
fake.cabal
88 lines (80 loc) · 2.14 KB
/
fake.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
84
85
86
87
88
name: fake
version: 0.1.2
synopsis: Randomly generated fake data
description: QuickCheck generates completely random data for the
purposes of test and catching corner cases. The fake
package provides tools for generating data that looks
plausibly real.
license: BSD3
license-file: LICENSE
author: Doug Beardsley
maintainer: mightybyte@gmail.com
copyright: Doug Beardsley, Formation Inc.
homepage: https://github.com/mightybyte/fake
bug-reports: https://github.com/mightybyte/fake/issues
category: Data
build-type: Simple
extra-source-files: ChangeLog.md
cabal-version: >=1.10
tested-with:
GHC==7.10.3,
GHC==8.0.2,
GHC==8.2.2,
GHC==8.4.4,
GHC==8.6.3,
GHC==8.8.3,
GHC==8.10.1,
GHC==9.0.1
extra-source-files:
default.nix
README.md
Source-repository head
Type: git
Location: https://github.com/mightybyte/fake.git
library
exposed-modules:
Fake
Fake.Class
Fake.Combinators
Fake.Cover
Fake.Provider.Address.EN_US
Fake.Provider.DateTime
Fake.Provider.IdNumber.EN_US
Fake.Provider.Lang
Fake.Provider.Lang.EN_US
Fake.Provider.Locale
Fake.Provider.Person.EN_US
Fake.Provider.PhoneNumber.EN_US
Fake.Provider.UserAgent
Fake.Utils
other-modules: Fake.Types
build-depends:
base >= 4.6 && < 4.16,
containers >= 0.5 && < 0.7,
generics-sop >= 0.2 && < 0.6,
random >= 1.1 && < 1.3,
text >= 1.2 && < 1.3,
time >= 1.4 && < 1.12
ghc-options: -Wall
hs-source-dirs: src
default-language: Haskell2010
test-suite spec
type: exitcode-stdio-1.0
main-is: Main.hs
hs-source-dirs: test, src
other-modules:
Fake.Class
Fake.Combinators
Fake.Cover
Fake.Provider.Lang
Fake.Provider.Person.EN_US
Fake.Types
build-depends:
base,
hspec >= 2.4 && < 2.8,
lens >= 4.18.1 && < 5.1,
random,
text,
time
ghc-options: -Wall -threaded -fno-warn-partial-type-signatures
default-language: Haskell2010