-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathcassava-conduit.cabal
77 lines (64 loc) · 2.63 KB
/
cassava-conduit.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
name: cassava-conduit
version: 0.6.6
license: BSD3
license-file: etc/LICENCE.md
author: Dom De Re
maintainer: Dom De Re
copyright: Copyright (C) 2014-2018 Dom De Re
synopsis: Conduit interface for cassava package
category: Data
description: Conduit interface for cassava package
.
PRs welcome.
homepage: https://github.com/domdere/cassava-conduit
bug-reports: https://github.com/domdere/cassava-conduit/issues
cabal-version: 1.24
build-type: Simple
tested-with: GHC == 8.0.2
, GHC == 8.2.2
extra-source-files: README.md
, CHANGELOG.md
source-repository head
type: git
location: https://github.com/domdere/cassava-conduit
flag small_base
description: Choose the new, split-up base package.
library
default-language: Haskell2010
build-depends: base < 5 && >= 4
, containers
, array
, bifunctors >= 4.2 && < 6
, bytestring >= 0.11 && < 0.15
, cassava == 0.5.*
, conduit >= 1.3 && < 1.5
, mtl >= 2.2.1 && < 2.6
, text == 1.2.* || >=2.0 && <2.9
ghc-options: -Wall
hs-source-dirs: src
exposed-modules: Data.Csv.Conduit
other-modules: LocalPrelude
default-extensions: NoImplicitPrelude
test-suite quickcheck
default-language: Haskell2010
type: exitcode-stdio-1.0
main-is: Main.hs
hs-source-dirs: quickcheck
other-modules: Test.Arbitrary
Test.Data.Csv.Conduit
build-depends: base >= 4 && < 5
, bytestring == 0.11.*
, cassava == 0.5.*
, conduit == 1.3.*
, QuickCheck == 2.12.*
, text == 1.2.* || >=2.0 && <2.1
, cassava-conduit
benchmark benchmarks
default-language: Haskell2010
type: exitcode-stdio-1.0
hs-source-dirs: benchmarks
main-is: Main.hs
ghc-options: -O2 -rtsopts
build-depends: base > 4 && <= 5
, cassava-conduit
, criterion >= 0.8