-
Notifications
You must be signed in to change notification settings - Fork 12
/
pipes-binary.cabal
58 lines (55 loc) · 1.76 KB
/
pipes-binary.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
name: pipes-binary
version: 0.4.4
license: BSD3
license-file: LICENSE
copyright: Copyright (c) Renzo Carbonara 2013
author: Renzo Carbonara
maintainer: renλren.zone
stability: Experimental
homepage: https://github.com/k0001/pipes-binary
bug-reports: https://github.com/k0001/pipes-binary/issues
category: Pipes
build-type: Simple
synopsis: Encode and decode binary streams using the pipes and binary libraries.
cabal-version: >=1.10
extra-source-files: README.md PEOPLE changelog.md
description:
Encode and decode binary Pipes streams using the @binary@ library.
.
See the @changelog.md@ file in the source distribution to learn about any
important changes between version.
source-repository head
type: git
location: git://github.com/k0001/pipes-binary.git
library
hs-source-dirs: src
exposed-modules: Pipes.Binary
ghc-options: -Wall -O2
default-language: Haskell2010
build-depends:
base >= 4.5 && < 5
, binary >= 0.6
, bytestring >= 0.9.2.1
, ghc-prim
, pipes >= 4.0
, pipes-parse >= 3.0
, pipes-bytestring >= 2.0
, transformers >= 0.2
test-suite tests
type: exitcode-stdio-1.0
hs-source-dirs: tests
main-is: Main.hs
default-language: Haskell2010
build-depends:
base
, binary
, bytestring
, ghc-prim
, lens-family-core >= 1.0
, pipes
, pipes-binary
, pipes-parse
, tasty >= 0.8
, tasty-hunit >= 0.8
, tasty-quickcheck >= 0.9
, transformers