-
Notifications
You must be signed in to change notification settings - Fork 1
/
quickcheck-text.cabal
48 lines (45 loc) · 1.75 KB
/
quickcheck-text.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
name: quickcheck-text
version: 0.1.2.1
synopsis: Alternative arbitrary instance for Text
description: The usual Arbitrary instance for Text
(in
<https://hackage.haskell.org/package/quickcheck-instances quickcheck-instances>)
only has single-byte
instances and so isn't an ideal representation of a valid UTF-8
character. This package has generators for one-, two- and three-byte
UTF-8 characters (all that are currently in use).
homepage: https://github.com/olorin/quickcheck-text
license: MIT
license-file: LICENSE
author: Sharif Olorin
maintainer: [email protected]
copyright: 2015-2016 Sharif Olorin and others
category: Text
build-type: Simple
cabal-version: >=1.10
extra-source-files: README.md
source-repository head
type: git
location: [email protected]:olorin/quickcheck-text.git
library
exposed-modules: Test.QuickCheck.Utf8
Data.Text.Arbitrary
build-depends: base >=4 && <5
, QuickCheck
, binary
, bytestring
, text
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall
test-suite properties
hs-source-dirs: test
main-is: properties.hs
type: exitcode-stdio-1.0
default-language: Haskell2010
ghc-options: -Wall
build-depends: base >=4.7 && <5
, QuickCheck
, bytestring
, quickcheck-text
, text