forked from snoyberg/tar-conduit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tar-conduit.cabal
95 lines (90 loc) · 2.89 KB
/
tar-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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
name: tar-conduit
version: 0.2.4
synopsis: Extract and create tar files using conduit for streaming
description: Please see README.md. This is just filler to avoid warnings.
homepage: https://github.com/snoyberg/tar-conduit#readme
license: MIT
license-file: LICENSE
author: Michael Snoyman
maintainer: michael@snoyman.com, bartavelle@gmail.com, alexey@kuleshevi.ch
category: Data Conduit
build-type: Simple
extra-source-files: README.md ChangeLog.md tests/files/libpq-0.3.tar.gz
cabal-version: >= 1.24.0.0
library
if impl(ghc < 8)
buildable: False
hs-source-dirs: src
exposed-modules: Data.Conduit.Tar, Data.Conduit.Tar.Types
build-depends: base >= 4.9.0.0 && < 5
, bytestring
, conduit
, conduit-combinators >= 1.0.8.1
, filepath
, text
default-language: Haskell2010
ghc-options: -Wall
if os(windows)
other-modules: Data.Conduit.Tar.Windows
build-depends: directory
, time
, unix-compat
cpp-options: -DWINDOWS
else
other-modules: Data.Conduit.Tar.Unix
build-depends: directory
, safe-exceptions
, unix
test-suite tests
type: exitcode-stdio-1.0
hs-source-dirs: tests
main-is: Spec.hs
build-depends: QuickCheck
, base >= 4.9.0.0
, bytestring
, conduit
, conduit-extra
, conduit-combinators >= 1.0.8.1
, directory
, filepath
, hspec
, tar-conduit
ghc-options: -O2 -threaded -rtsopts
default-language: Haskell2010
test-suite space
default-language: Haskell2010
type: exitcode-stdio-1.0
ghc-options: -O2
main-is: Space.hs
hs-source-dirs: tests
build-depends: base >= 4.9.0.0
, bytestring
, conduit
, conduit-combinators >= 1.0.8.1
, containers
, deepseq
, directory
, filepath
, hspec
, tar-conduit
, weigh
benchmark time
default-language: Haskell2010
type: exitcode-stdio-1.0
ghc-options: -O2
main-is: Time.hs
hs-source-dirs: tests
build-depends: base >= 4.9.0.0
, bytestring
, conduit
, conduit-combinators >= 1.0.8.1
, containers
, criterion
, deepseq
, directory
, filepath
, hspec
, tar-conduit
source-repository head
type: git
location: https://github.com/snoyberg/tar-conduit