-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtapioca.cabal
More file actions
69 lines (65 loc) · 2.39 KB
/
tapioca.cabal
File metadata and controls
69 lines (65 loc) · 2.39 KB
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
cabal-version: 2.4
name: tapioca
version: 0.2.0
license: BSD-3-Clause
license-file: LICENSE
maintainer: cfraz89@gmail.com
author: Christopher Fraser
synopsis: A tasty enhancement to cassava for easy csv exporting
description: tapioca is a package that builds on cassava, to provide a simpler, more succinct method of mapping records to and from csv data.
category: Text, Web, CSV
extra-source-files:
examples/BasicDecode.hs
examples/BasicDecodeNoHeader.hs
examples/BasicEncode.hs
examples/CassavaCompat.hs
examples/CodecField.hs
examples/EncodeOnly.hs
examples/NestedDecode.hs
examples/NestedEncode.hs
CHANGELOG.md
README.md
Tested-with: GHC ==8.6.5, GHC ==8.6.3, GHC ==8.6.2, GHC ==8.2.2
source-repository head
type: git
location: https://github.com/cfraz89/tapioca.git
library
exposed-modules: Data.Tapioca
other-modules: Data.Tapioca.Internal.Common,
Data.Tapioca.Internal.Types.Field,
Data.Tapioca.Internal.Types.ColSep,
Data.Tapioca.Internal.Types.CsvMap,
Data.Tapioca.Internal.Types.Capability,
Data.Tapioca.Internal.Types.GParseRecord,
Data.Tapioca.Internal.Types.HeaderOption,
Data.Tapioca.Internal.Types.HFoldable,
Data.Tapioca.Internal.Types.Index,
Data.Tapioca.Internal.Types.Match,
Data.Tapioca.Internal.Types.ParseRecord,
Data.Tapioca.Internal.Types.ParseWithCsvMap,
Data.Tapioca.Internal.ByCsvMap
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall -fprint-potential-instances
build-depends:
base >=4.10.0 && < 1000,
attoparsec >= 0.13.2 && < 0.14,
bytestring >= 0.10.8 && < 0.11,
binary >= 0.8.6 && < 0.9,
cassava >= 0.5.1 && < 0.6,
unordered-containers >= 0.2.9 && < 0.3,
vector >= 0.12.0 && < 0.13,
errors >= 2.3.0 && < 2.4,
string-conv >= 0.1 && < 0.2,
constraints >= 0.1 && < 1.0
test-suite tapioca-tests
type: exitcode-stdio-1.0
default-language: Haskell2010
main-is: TapiocaTests.hs
hs-source-dirs: tests
ghc-options: -Wall
build-depends:
base,
hspec,
tapioca,
vector