forked from haskell-hvr/cassava
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cassava.cabal
92 lines (82 loc) · 2.01 KB
/
cassava.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
Name: cassava
Version: 0.4.0.0
Synopsis: A CSV parsing and encoding library
Description:
A CSV parsing and encoding library optimized for ease of use and high
performance.
Homepage: https://github.com/tibbe/cassava
License: BSD3
License-file: LICENSE
Bug-reports: https://github.com/tibbe/cassava/issues
Copyright: (c) 2012 Johan Tibell
(c) 2012 Bryan O'Sullivan
(c) 2011 MailRank, Inc.
Author: Johan Tibell
Maintainer: [email protected]
Category: Text, Web, CSV
Build-type: Simple
Cabal-version: >=1.8
Extra-source-files: examples/*.hs
Library
Exposed-modules:
Data.Csv
Data.Csv.Incremental
Data.Csv.Parser
Data.Csv.Streaming
Other-modules:
Data.Csv.Compat.Monoid
Data.Csv.Conversion
Data.Csv.Conversion.Internal
Data.Csv.Encoding
Data.Csv.Types
Data.Csv.Util
Build-depends:
array < 0.6,
attoparsec >= 0.10.2 && < 0.12,
base < 5,
blaze-builder < 0.4,
bytestring < 0.11,
containers < 0.6,
deepseq < 1.4,
text < 1.2,
unordered-containers < 0.3,
vector < 0.11
ghc-options: -Wall -O2
if impl(ghc >= 7.2.1)
cpp-options: -DGENERICS
build-depends: ghc-prim >= 0.2 && < 0.4
Test-suite unit-tests
Type: exitcode-stdio-1.0
Main-is: UnitTests.hs
Build-depends:
attoparsec,
base,
bytestring,
cassava,
HUnit,
QuickCheck >= 2.0,
test-framework,
test-framework-hunit,
test-framework-quickcheck2,
text,
unordered-containers,
vector
hs-source-dirs: tests
ghc-options: -Wall
Benchmark benchmarks
Type: exitcode-stdio-1.0
Main-is: Benchmarks.hs
Build-depends:
base,
bytestring,
cassava,
criterion,
deepseq,
lazy-csv >= 0.5,
text,
unordered-containers,
vector
hs-source-dirs: benchmarks
source-repository head
type: git
location: https://github.com/tibbe/cassava.git