Skip to content

Commit

Permalink
chore: update go-dump to 1.0.8 (#182)
Browse files Browse the repository at this point in the history
* chore: update go-dump to 1.0.6
and all the other dependencies
  • Loading branch information
fsamin authored and yesnault committed Feb 28, 2019
1 parent 0b0228a commit 33b4a2f
Show file tree
Hide file tree
Showing 1,385 changed files with 147,509 additions and 155 deletions.
6 changes: 3 additions & 3 deletions Gopkg.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Gopkg.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@


[[constraint]]
version = "1.0.3"
version = "1.0.8"
name = "github.com/fsamin/go-dump"

[[constraint]]
Expand Down
6 changes: 1 addition & 5 deletions executors/dump.go
Original file line number Diff line number Diff line change
@@ -1,16 +1,12 @@
package executors

import (
"bytes"

dump "github.com/fsamin/go-dump"
)

// Dump dumps v as a map[string]interface{}.
func Dump(v interface{}) (map[string]interface{}, error) {
w := new(bytes.Buffer)
e := dump.NewDefaultEncoder(w)

e := dump.NewDefaultEncoder()
e.ExtraFields.Len = true
e.ExtraFields.Type = true
e.ExtraFields.DetailedStruct = true
Expand Down
2 changes: 1 addition & 1 deletion package.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash

cd cli/venom
for DIST in `go tool dist list | grep -v '^android/' | grep -v '^nacl/' | grep -v '^plan9/' | grep -v '^darwin/arm'`; do
for DIST in `go tool dist list | grep -v '^android/' | grep -v 'mips' | grep -v 'riscv64' | grep -v 'ppc64' | grep -v 's390x' | grep -v '^nacl/' | grep -v '^plan9/' | grep -v '^darwin/arm' | grep -v '^js/wasm'`; do
GOOS=`echo ${DIST} | cut -d / -f 1`
GOARCH=`echo ${DIST} | cut -d / -f 2`

Expand Down
82 changes: 82 additions & 0 deletions vendor/github.com/davecgh/go-spew/spew/testdata/dumpcgo.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

31 changes: 31 additions & 0 deletions vendor/github.com/eapache/go-resiliency/batcher/README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

108 changes: 108 additions & 0 deletions vendor/github.com/eapache/go-resiliency/batcher/batcher.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 33b4a2f

Please sign in to comment.