forked from k0001/pipes-binary
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpipes-binary.cabal
38 lines (36 loc) · 1.47 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
name: pipes-binary
version: 0.2.0
license: BSD3
license-file: LICENSE
copyright: Copyright (c) Renzo Carbonara 2013
author: Renzo Carbonara
maintainer: renzocarbonaraλgmail.com
stability: Experimental
tested-with: GHC == 7.6.3
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.8
extra-source-files: README.md PEOPLE NEWS
description:
Encode and decode binary Pipes streams using the @binary@ library.
.
See the @NEWS@ 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
build-depends: base (==4.*)
, binary (>=0.7 && <0.8)
, bytestring (>=0.9.2.1)
, pipes (>=4.0 && <4.1)
, pipes-parse (>=2.0 && <2.1)
, pipes-bytestring (>=1.0.1 && <1.1)
, transformers (>=0.2 && <0.4)
exposed-modules: Pipes.Binary
other-modules: Pipes.Binary.Internal
ghc-options: -Wall -O2