forked from advancedtelematic/quickcheck-state-machine
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathquickcheck-state-machine.cabal
More file actions
127 lines (122 loc) · 4.53 KB
/
quickcheck-state-machine.cabal
File metadata and controls
127 lines (122 loc) · 4.53 KB
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
name: quickcheck-state-machine
version: 0.4.0
synopsis: Test monadic programs using state machine based models
description: See README at <https://github.com/advancedtelematic/quickcheck-state-machine#readme>
homepage: https://github.com/advancedtelematic/quickcheck-state-machine#readme
license: BSD3
license-file: LICENSE
author: Stevan Andjelkovic
maintainer: Stevan Andjelkovic <stevan.andjelkovic@here.com>
copyright: Copyright (C) 2017-2018, ATS Advanced Telematic Systems GmbH;
2018, HERE Europe B.V.
category: Testing
build-type: Simple
extra-source-files: README.md
, CHANGELOG.md
, CONTRIBUTING.md
cabal-version: >=1.10
tested-with: GHC == 8.2.2, GHC == 8.4.3
library
hs-source-dirs: src
ghc-options:
-Weverything
-Wno-missing-exported-signatures
-Wno-missing-import-lists
-Wno-missed-specialisations
-Wno-all-missed-specialisations
-Wno-unsafe
-Wno-safe
-Wno-missing-local-signatures
-Wno-monomorphism-restriction
exposed-modules: Test.StateMachine
, Test.StateMachine.BoxDrawer
, Test.StateMachine.ConstructorName
, Test.StateMachine.Logic
, Test.StateMachine.Parallel
, Test.StateMachine.Sequential
, Test.StateMachine.Types
, Test.StateMachine.Types.Environment
, Test.StateMachine.Types.GenSym
, Test.StateMachine.Types.History
, Test.StateMachine.Types.Rank2
, Test.StateMachine.Types.References
, Test.StateMachine.Utils
, Test.StateMachine.Z
other-modules:
Paths_quickcheck_state_machine
build-depends:
ansi-wl-pprint >=0.6.7.3,
async >=2.1.1.1,
base >=4.7 && <5,
containers >=0.5.7.1,
exceptions >=0.8.3,
lifted-async >=0.9.3,
lifted-base >=0.2.3.11,
matrix >=0.3.5.0,
monad-control >=1.0.2.2,
mtl >=2.2.1,
pretty-show,
QuickCheck >=2.9.2,
random,
split >=0.2.3.3,
stm >=2.4.4.1,
tree-diff,
vector >=0.12.0.1
default-language: Haskell2010
test-suite quickcheck-state-machine-test
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Spec.hs
build-depends: base,
bytestring,
directory,
filelock,
filepath,
http-client,
lifted-async >=0.9.3,
matrix >=0.3.5.0,
monad-control >=1.0.2.2,
monad-logger,
mtl,
network,
persistent,
persistent-postgresql,
persistent-template,
process,
QuickCheck >=2.9.2,
quickcheck-instances,
quickcheck-state-machine,
random,
resourcet,
servant,
servant-client,
servant-server,
strict,
string-conversions,
tasty,
tasty-quickcheck,
text,
tree-diff,
vector >=0.12.0.1,
wai,
warp
other-modules: CircularBuffer,
CrudWebserverDb,
DieHard,
MemoryReference,
TicketDispenser
ghc-options:
-threaded -rtsopts -with-rtsopts=-N
-Weverything
-Wno-missing-exported-signatures
-Wno-missing-import-lists
-Wno-missed-specialisations
-Wno-all-missed-specialisations
-Wno-unsafe
-Wno-safe
-Wno-missing-local-signatures
-Wno-monomorphism-restriction
default-language: Haskell2010
source-repository head
type: git
location: https://github.com/advancedtelematic/quickcheck-state-machine