forked from basvandijk/vector-bytestring
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vector-bytestring.cabal
82 lines (67 loc) · 2.66 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
name: vector-bytestring
version: 0.0.0.1
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 && < 4.6
, primitive >= 0.3.1 && < 0.5
, ghc-prim >= 0.2 && < 0.3
, vector >= 0.9.1 && < 0.10
, deepseq >= 1.1 && < 1.4
, bytestring >= 0.9 && < 0.10
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
ghc-options: -Wall -O2 -funbox-strict-fields
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 && < 4.6
, random >= 1.0.1 && < 1.1
, directory >= 1.0 && < 1.2
, 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 && < 4.6
, deepseq >= 1.1 && < 1.4
, bytestring >= 0.9 && < 0.10
, criterion >= 0.5 && < 0.7
ghc-options: -Wall -O2 -funbox-strict-fields