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
|
Source: haskell-binary
Section: devel
Priority: optional
Maintainer: Kari Pahula <kaol@debian.org>
Build-Depends: debhelper (>= 6), cdbs, ghc6 (>= 6.8.2), haskell-devscripts, hugs, cpphs, haddock, ghc6-prof
Standards-Version: 3.7.3
Homepage: http://code.haskell.org/binary/
Package: libghc6-binary-dev
Architecture: any
Depends: ${shlibs:Depends}, ${misc:Depends}, ${haskell:Depends}
Suggests: libghc6-binary-doc
Description: Haskell library for binary serialisation using lazy ByteStrings
Binary serialisation of Haskell values to and from lazy ByteStrings.
The Binary library provides methods for encoding Haskell values as
streams of bytes directly in memory. The resulting ByteString can
then be written to disk, sent over the network, or futher processed
(for example, compressed with gzip).
.
The 'Binary' package is notable in that it provides both pure, and
high performance serialisation.
.
Values are always encoded in network order (big endian) form, and
encoded data should be portable across machine endianess, word size,
or compiler version. For example, data encoded using the Binary class
could be written from GHC, and read back in Hugs.
Package: libghc6-binary-prof
Architecture: any
Depends: ${shlibs:Depends}, ${misc:Depends}, ${haskell:Depends}
Description: Haskell library for binary serialisation; profiling library
This package provides a library for the Haskell programming language,
compiled for profiling.
.
Binary serialisation of Haskell values to and from lazy ByteStrings.
The Binary library provides methods for encoding Haskell values as
streams of bytes directly in memory. The resulting ByteString can
then be written to disk, sent over the network, or futher processed
(for example, compressed with gzip).
Package: libhugs-binary
Architecture: all
Depends: ${misc:Depends}, ${haskell:Depends}
Suggests: libghc6-binary-doc
Description: Haskell library for binary serialisation; hugs library
This package provides a library for Hugs, an interpreter for the
Haskell programming language.
.
Binary serialisation of Haskell values to and from lazy ByteStrings.
The Binary library provides methods for encoding Haskell values as
streams of bytes directly in memory. The resulting ByteString can
then be written to disk, sent over the network, or futher processed
(for example, compressed with gzip).
Package: libghc6-binary-doc
Architecture: all
Section: doc
Depends: ${misc:Depends}
Description: Haskell library for binary serialisation; documentation
This package provides documentation for Data.Binary Haskell module.
.
Binary serialisation of Haskell values to and from lazy ByteStrings.
The Binary library provides methods for encoding Haskell values as
streams of bytes directly in memory. The resulting ByteString can
then be written to disk, sent over the network, or futher processed
(for example, compressed with gzip).
|