-
Notifications
You must be signed in to change notification settings - Fork 7
/
vector-bytestring.cabal
97 lines (82 loc) · 3.59 KB
/
vector-bytestring.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
name: vector-bytestring
version: 0.0.0.2
cabal-version: >=1.9.2
build-type: Simple
license: BSD3
license-file: LICENSE
copyright: 2011 Bas van Dijk <[email protected]>
author: Bas van Dijk <[email protected]>
maintainer: Bas van Dijk <[email protected]>
homepage: https://github.com/basvandijk/vector-bytestring
bug-reports: https://github.com/basvandijk/vector-bytestring/issues
stability: experimental
category: Data
synopsis: ByteStrings as type synonyms of Storable Vectors of Word8s
description:
ByteStrings as type synonyms of Storable Vectors of Word8s
extra-source-files: README.markdown
tests/*.hs
tests/data
tests/macros.m4
tests/Makefile
tests/spellcheck-input.txt
tests/Usr.Dict.Words
source-repository head
Type: git
Location: git://github.com/basvandijk/vector-bytestring.git
Library
build-depends: base >= 4.3 && < 4.7
, primitive >= 0.3.1 && < 0.6
, ghc-prim >= 0.2 && < 0.4
, vector >= 0.9.1 && < 0.11
, deepseq >= 1.1 && < 1.4
, bytestring >= 0.9 && < 0.11
exposed-modules: Data.Vector.Storable.ByteString
Data.Vector.Storable.ByteString.Internal
Data.Vector.Storable.ByteString.Unsafe
Data.Vector.Storable.ByteString.Char8
Data.Vector.Storable.ByteString.Legacy
Data.Vector.Storable.ByteString.Lazy
Data.Vector.Storable.ByteString.Lazy.Internal
Data.Vector.Storable.ByteString.Lazy.Char8
Data.Vector.Storable.ByteString.Lazy.Legacy
Data.Vector.Storable.ByteString.Builder
Data.Vector.Storable.ByteString.Builder.Extra
Data.Vector.Storable.ByteString.Builder.Prim
Data.Vector.Storable.ByteString.Builder.Internal
Data.Vector.Storable.ByteString.Builder.Prim.Internal
other-modules: Data.Vector.Storable.ByteString.Builder.ASCII
Data.Vector.Storable.ByteString.Builder.Prim.Binary
Data.Vector.Storable.ByteString.Builder.Prim.ASCII
Data.Vector.Storable.ByteString.Builder.Prim.Internal.Floating
Data.Vector.Storable.ByteString.Builder.Prim.Internal.UncheckedShifts
Data.Vector.Storable.ByteString.Builder.Prim.Internal.Base16
ghc-options: -Wall
-O2 -funbox-strict-fields
-fmax-simplifier-iterations=10
-fdicts-cheap
-fspec-constr-count=6
c-sources: cbits/bytestring.c
include-dirs: include
includes: bytestring.h
install-includes: bytestring.h
test-suite prop-compiled
type: exitcode-stdio-1.0
main-is: Properties.hs
hs-source-dirs: tests
build-depends: vector-bytestring
, base >= 4.3 && < 4.7
, random >= 1.0.1 && < 1.1
, directory >= 1.0 && < 1.3
, QuickCheck >= 2.3 && < 3
ghc-options: -fno-enable-rewrite-rules
benchmark bench
type: exitcode-stdio-1.0
main-is: bench.hs
hs-source-dirs: bench
build-depends: vector-bytestring
, base >= 4.3 && < 4.7
, deepseq >= 1.1 && < 1.4
, bytestring >= 0.9 && < 0.11
, criterion >= 0.6.1 && < 0.7
ghc-options: -Wall -O2 -funbox-strict-fields