forked from haskell-hvr/cassava
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcassava.cabal
81 lines (71 loc) · 2.42 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
Name: cassava
Version: 0.1.0.2
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.Parser
Other-modules: Data.Csv.Compat.Monoid
Data.Csv.Conversion
Data.Csv.Conversion.Internal
Data.Csv.Encoding
Data.Csv.Types
Build-depends: array,
attoparsec >= 0.10.2,
base < 5,
blaze-builder,
bytestring,
containers,
text,
unordered-containers,
vector
ghc-options: -Wall -O2
if impl(ghc >= 7.2.1)
cpp-options: -DGENERICS
build-depends: ghc-prim >= 0.2
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,
text,
unordered-containers,
vector
hs-source-dirs: benchmarks
source-repository head
type: git
location: https://github.com/tibbe/cassava.git