msgpack-python/perl
tokuhirom 8b90968cb1 Checking in changes prior to tagging of version 0.16_03.
Changelog diff is:

diff --git a/perl/Changes b/perl/Changes
index 68b58ba..a4a3e36 100644
--- a/perl/Changes
+++ b/perl/Changes
@@ -1,3 +1,7 @@
+0.16_03
+
+    - no feature changes
+
 0.16_02

     - document enhancement(tokuhirom)
2010-09-06 14:34:48 +09:00
..
benchmark perl: display module version 2009-07-30 13:29:24 +09:00
lib/Data Checking in changes prior to tagging of version 0.16_03. 2010-09-06 14:34:48 +09:00
t modified t/05_preferred_int.t for Win32 2010-09-04 19:54:12 +09:00
xs-src removed commented out codes 2010-09-02 14:33:59 +09:00
xt Perl: Test::Requires is not needed for this test. 2010-05-05 17:25:08 +09:00
.gitignore Merge branch 'master' of git://github.com/makamaka/msgpack 2010-09-05 16:18:57 +09:00
.shipit Checking in changes prior to tagging of version 0.01. Changelog diff is: 2009-07-01 18:40:14 +09:00
Changes Checking in changes prior to tagging of version 0.16_03. 2010-09-06 14:34:48 +09:00
Makefile.PL Perl: added link to git repository. 2010-09-06 14:31:53 +09:00
MANIFEST.SKIP Checking in changes prior to tagging of version 0.16_01. 2010-09-06 14:20:54 +09:00
README upgraded docs 2010-09-06 14:20:54 +09:00
util.h - fixed SVt_PVNV issue. 2009-07-30 16:22:00 +09:00

NAME
    Data::MessagePack - MessagePack serialising/deserialising

SYNOPSIS
        my $packed = Data::MessagePack->pack($dat);
        my $unpacked = Data::MessagePack->unpack($dat);

DESCRIPTION
    This module converts Perl data structures to MessagePack and vice versa.

    MessagePack is a binary-based efficient object serialization format. It
    enables to exchange structured objects between many languages like JSON.
    But unlike JSON, it is very fast and small.

METHODS
    my $packed = Data::MessagePack->pack($data);
        pack the $data to messagepack format string.

    my $unpacked = Data::MessagePack->unpack($msgpackstr);
        unpack the $msgpackstr to messagepack format string.

Configuration Variables
    $Data::MessagePack::PreferInteger
        Pack the string as int when the value looks like int(EXPERIMENTAL).

AUTHORS
    Tokuhiro Matsuno

    Makamaka Hannyaharamitu

THANKS TO
    Jun Kuriyama

    Dan Kogai

    FURUHASHI Sadayuki

LICENSE
    This library is free software; you can redistribute it and/or modify it
    under the same terms as Perl itself.

SEE ALSO
    <http://msgpack.org/>