-
Notifications
You must be signed in to change notification settings - Fork 1
/
streaming-lzma.cabal
55 lines (44 loc) · 1.94 KB
/
streaming-lzma.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
cabal-version: 1.12
build-type: Simple
name: streaming-lzma
version: 0.0.0.0
synopsis: Streaming interface for LZMA/XZ compression
homepage: https://github.com/hvr/streaming-lzma
bug-reports: https://github.com/hvr/streaming-lzma/issues
license: BSD3
license-file: LICENSE
author: Herbert Valerio Riedel
maintainer: [email protected]
category: Codec, Compression, Streaming
description:
This package provides a <http://hackage.haskell.org/package/streaming streaming> API for the <https://en.wikipedia.org/wiki/LZMA LZMA (Lempel–Ziv–Markov chain algorithm)> compression algorithm used in the @.xz@ file format.
source-repository head
type: git
location: https://github.com/hvr/streaming-lzma.git
library
default-language: Haskell2010
other-extensions: Trustworthy LambdaCase
hs-source-dirs: src
exposed-modules: Streaming.Lzma
build-depends: base >= 4.8 && < 4.13
, bytestring >= 0.10.6 && < 0.11
, lzma == 0.0.*
, streaming-bytestring >= 0.1.6 && < 0.2
, streaming == 0.2.*
ghc-options: -Wall
test-suite test
default-language: Haskell2010
hs-source-dirs: src-tests
main-is: test.hs
type: exitcode-stdio-1.0
build-depends: base
, bytestring
, streaming
, streaming-lzma
, streaming-bytestring
, HUnit == 1.6.*
, QuickCheck == 2.13.*
, test-framework == 0.8.*
, test-framework-hunit == 0.3.*
, test-framework-quickcheck2 == 0.3.*
ghc-options: -Wall -threaded