-
Notifications
You must be signed in to change notification settings - Fork 4
/
smallcheck-series.cabal
59 lines (55 loc) · 2.45 KB
/
smallcheck-series.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
name: smallcheck-series
version: 0.7.1.0
synopsis: Extra SmallCheck series and utilities
description:
Orphan
@<https://hackage.haskell.org/package/smallcheck-1.1.1/docs/Test-SmallCheck-Series.html#t:Serial Serial>@
instances and utilities to create and manipulate
@<https://hackage.haskell.org/package/smallcheck-1.1.1/docs/Test-SmallCheck-Series.html#t:Series Series>@
for common types.
homepage: https://github.com/jdnavarro/smallcheck-series
bug-reports: https://github.com/jdnavarro/smallcheck-series/issues
license: BSD3
license-file: LICENSE
author: Danny Navarro <[email protected]>
maintainer: Jan Path <[email protected]>, Ignat Insarov <[email protected]>
category: Testing
build-type: Simple
extra-source-files: README.md CHANGELOG.md AUTHORS.md
cabal-version: >=1.10
tested-with: GHC == 8.10.2, GHC == 8.8.2, GHC == 8.6.5, GHC == 8.4.4, GHC == 8.2.2, GHC == 8.0.2
source-repository head
type: git
location: git://github.com/jdnavarro/smallcheck-series.git
library
default-language: Haskell2010
ghc-options: -Wall
exposed-modules: Test.SmallCheck.Series.ByteString
Test.SmallCheck.Series.ByteString.Lazy
Test.SmallCheck.Series.Instances
Test.SmallCheck.Series.Instances.Internal
Test.SmallCheck.Series.Text
Test.SmallCheck.Series.Text.Lazy
Test.SmallCheck.Series.Utils
build-depends: base >=4.6 && <4.15,
bytestring >=0.10.0.2,
containers >=0.5.0.0,
text >=0.11.3,
transformers >=0.3.0.0,
logict >=0.6.0.2,
smallcheck >=1.1.1
test-suite doctests
default-language: Haskell2010
type: exitcode-stdio-1.0
hs-source-dirs: tests
main-is: doctests.hs
ghc-options: -Wall -threaded
build-depends: base >=4.6 && <4.15,
Glob >=0.7.5,
doctest >=0.9.10
test-suite checks
default-language: Haskell2010
type: exitcode-stdio-1.0
hs-source-dirs: tests
main-is: Main.hs
build-depends: base, smallcheck, smallcheck-series, tasty, tasty-smallcheck, tasty-hunit