This repository has been archived by the owner on Jun 18, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 25
/
quickcheck-state-machine.cabal
169 lines (164 loc) · 6.04 KB
/
quickcheck-state-machine.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
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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
name: quickcheck-state-machine
version: 0.7.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@strath.ac.uk>
copyright: Copyright (C) 2017-2018, ATS Advanced Telematic Systems GmbH;
2018-2019, HERE Europe B.V.;
2019-2020, Stevan Andjelkovic.
category: Testing
build-type: Simple
extra-source-files: README.md
, CHANGELOG.md
, CONTRIBUTING.md
cabal-version: >=1.10
tested-with: GHC == 8.4.3, GHC == 8.6.5, GHC == 8.8.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.DotDrawing
, Test.StateMachine.Labelling
, Test.StateMachine.Lockstep.Auxiliary
, Test.StateMachine.Lockstep.NAry
, Test.StateMachine.Lockstep.Simple
, Test.StateMachine.Logic
, Test.StateMachine.Markov
, 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,
base >=4.10 && <5,
containers >=0.5.7.1,
directory >=1.0.0.0,
exceptions >=0.8.3,
filepath >=1.0,
generic-data >=0.3.0.0,
graphviz >= 2999.20.0.3,
markov-chain-usage-model >=0.0.0,
matrix >=0.3.5.0,
mtl >=2.2.1,
time >=1.7,
pretty-show >=1.6.16,
process >=1.2.0.0,
QuickCheck >=2.12,
random >=1.1,
sop-core,
split,
text,
tree-diff >=0.0.2.1,
unliftio >=0.2.7.0
default-language: Haskell2010
test-suite quickcheck-state-machine-test
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Spec.hs
build-depends: aeson,
array,
base,
bifunctors,
bytestring,
containers,
directory,
doctest,
filelock,
filepath,
hashable,
hashtables,
hs-rqlite >= 0.1.2.0,
HTTP,
http-client,
monad-logger,
mtl,
network,
persistent >= 2.10.3,
persistent-postgresql,
persistent-sqlite,
persistent-template,
postgresql-simple,
pretty-show,
process,
QuickCheck,
quickcheck-instances,
quickcheck-state-machine,
random,
resourcet,
resource-pool,
servant,
servant-client,
servant-server,
split,
stm,
strict,
string-conversions,
tasty,
tasty-hunit,
tasty-quickcheck,
text,
tree-diff,
time,
vector >=0.12.0.1,
wai,
warp,
unliftio,
unliftio-core
other-modules: Bookstore,
CircularBuffer,
Cleanup,
CrudWebserverDb,
DieHard,
Echo,
ErrorEncountered,
Hanoi,
IORefs,
MemoryReference,
Mock,
Overflow,
ProcessRegistry,
Schema,
RQlite,
ShrinkingProps,
SQLite,
TicketDispenser,
UnionFind
ghc-options:
-threaded -rtsopts -with-rtsopts=-N
-fno-ignore-asserts
-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