-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsiphon.cabal
65 lines (59 loc) · 1.45 KB
/
siphon.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
cabal-version: 3.0
name: siphon
version: 0.8.2.1
synopsis: Encode and decode CSV files
description: Encode and decode CSV files.
homepage: https://github.com/byteverse/siphon
bug-reports: https://github.com/byteverse/siphon/issues
license: BSD-3-Clause
license-file: LICENSE
author: Andrew Martin
maintainer: [email protected]
copyright: 2016 Andrew Martin
category: web
build-type: Simple
extra-doc-files:
CHANGELOG.md
README.md
tested-with: GHC ==9.4.8 || ==9.6.3 || ==9.8.1
common build-settings
default-language: Haskell2010
ghc-options: -Wall -Wunused-packages
build-depends: base >=4.8 && <5
library
import: build-settings
ghc-options: -O2
hs-source-dirs: src
exposed-modules:
Siphon
Siphon.Types
build-depends:
, attoparsec
, bytestring
, colonnade >=1.2
, streaming >=0.1.4
, text >=1.0
, transformers >=0.4.2
, vector
test-suite test
import: build-settings
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Test.hs
build-depends:
, base
, bytestring
, colonnade
, HUnit
, profunctors
, QuickCheck
, siphon
, streaming
, test-framework
, test-framework-hunit
, test-framework-quickcheck2
, text
, vector
source-repository head
type: git
location: git://github.com/byteverse/siphon.git