Skip to content

Tags: 0chain/msgp

Tags

v1.2.2

Toggle v1.2.2's commit message
Revert "Define 0chain module"

This reverts commit 314711a.

v1.2.1

Toggle v1.2.1's commit message
Define 0chain module

v1.2.0

Toggle v1.2.0's commit message
Add sort

v1.1.62

Toggle v1.1.62's commit message

Unverified

This user has not yet uploaded their public signing key.
Add time.Duration support

v1.1.6

Toggle v1.1.6's commit message
msgp: fix dropped test errors

v1.1.5

Toggle v1.1.5's commit message
go.mod: fwd: upgrade to 1.1.1

Use the latest bugfix release of philhofer/fwd

v1.1.4

Toggle v1.1.4's commit message
msgp/unsafe: bring code in line with unsafe guidelines

At some point the guidelines for unsafe[1] were changed
such that allocating a variable of type 'reflect.StringHeader'
or 'reflect.SliceHeader' is no longer permitted, and 'go vet'
will soon reject code that does so[2].

Change the implementation of UnsafeString to avoid using
an intermediate StringHeader altogether, and deprecate UnsafeBytes,
as the new guidelines seem to indicate it cannot be implemented
safely (escape analysis may not handle it correctly).

[1] https://golang.org/pkg/unsafe/
[2] golang/go#40701

v1.1.3

Toggle v1.1.3's commit message
 Adding Power on support to travis

v1.1.2

Toggle v1.1.2's commit message
JSON encoder may produce invalid utf-8 when provided invalid utf-8 me…

…ssage pack string.

Fix encoder and add unit test which validates expectation.

v1.1.1

Toggle v1.1.1's commit message
all: implement omitempty

Handle the 'omitempty' struct tag similarly to encoding/json

Fixes tinylib#263