forked from input-output-hk/hedgehog-extras
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhedgehog-extras.cabal
86 lines (80 loc) · 3.29 KB
/
hedgehog-extras.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
cabal-version: 2.4
name: hedgehog-extras
version: 0.1.0.0
synopsis: Supplemental library for hedgehog
description: Supplemental library for hedgehog.
category: Test
author: IOHK
maintainer: [email protected]
license: Apache-2.0
license-files: LICENSE
NOTICE
build-type: Simple
source-repository head
type: git
location: https://github.com/input-output-hk/hedgehog-extras
common base { build-depends: base >= 4.12 && < 4.15 }
common maybe-Win32-network
if os(windows)
build-depends: Win32-network
common project-config
default-language: Haskell2010
default-extensions: NoImplicitPrelude
ghc-options: -Wall
-Wcompat
-Wincomplete-record-updates
-Wincomplete-uni-patterns
-Wpartial-fields
-Wredundant-constraints
-Wunused-packages
library
import: base, project-config
, maybe-Win32-network
hs-source-dirs: src
build-depends: aeson >= 1.5.6.0
, aeson-pretty >= 0.8.5
, async
, bytestring
, deepseq
, directory
, exceptions
, filepath
, hedgehog
, mmorph
, mtl
, network
, filepath
, process
, resourcet
, stm
, temporary
, text
, time
, transformers
, unliftio
, unordered-containers
, yaml
exposed-modules: Hedgehog.Extras
Hedgehog.Extras.Aeson
Hedgehog.Extras.Internal.Cli
Hedgehog.Extras.Internal.Plan
Hedgehog.Extras.Internal.Test.Integration
Hedgehog.Extras.Stock
Hedgehog.Extras.Stock.Aeson
Hedgehog.Extras.Stock.CallStack
Hedgehog.Extras.Stock.IO.File
Hedgehog.Extras.Stock.IO.Network.NamedPipe
Hedgehog.Extras.Stock.IO.Network.Socket
Hedgehog.Extras.Stock.IO.Network.Sprocket
Hedgehog.Extras.Stock.IO.Process
Hedgehog.Extras.Stock.Monad
Hedgehog.Extras.Stock.OS
Hedgehog.Extras.Stock.String
Hedgehog.Extras.Stock.Time
Hedgehog.Extras.Test
Hedgehog.Extras.Test.Base
Hedgehog.Extras.Test.Concurrent
Hedgehog.Extras.Test.File
Hedgehog.Extras.Test.MonadAssertion
Hedgehog.Extras.Test.Network
Hedgehog.Extras.Test.Process