Update go dependencies
This commit is contained in:
parent
a858c549d9
commit
f3bde94d68
643 changed files with 14296 additions and 19354 deletions
1
vendor/github.com/mailru/easyjson/Makefile
generated
vendored
1
vendor/github.com/mailru/easyjson/Makefile
generated
vendored
|
|
@ -12,6 +12,7 @@ root: .root/src/$(PKG)
|
|||
|
||||
clean:
|
||||
rm -rf .root
|
||||
rm -rf tests/*_easyjson.go
|
||||
|
||||
build:
|
||||
go build -i -o .root/bin/easyjson $(PKG)/easyjson
|
||||
|
|
|
|||
4
vendor/github.com/mailru/easyjson/jlexer/lexer.go
generated
vendored
4
vendor/github.com/mailru/easyjson/jlexer/lexer.go
generated
vendored
|
|
@ -904,6 +904,10 @@ func (r *Lexer) UintStr() uint {
|
|||
return uint(r.Uint64Str())
|
||||
}
|
||||
|
||||
func (r *Lexer) UintptrStr() uintptr {
|
||||
return uintptr(r.Uint64Str())
|
||||
}
|
||||
|
||||
func (r *Lexer) Int8Str() int8 {
|
||||
s, b := r.unsafeString()
|
||||
if !r.Ok() {
|
||||
|
|
|
|||
7
vendor/github.com/mailru/easyjson/jwriter/writer.go
generated
vendored
7
vendor/github.com/mailru/easyjson/jwriter/writer.go
generated
vendored
|
|
@ -196,6 +196,13 @@ func (w *Writer) Uint64Str(n uint64) {
|
|||
w.Buffer.Buf = append(w.Buffer.Buf, '"')
|
||||
}
|
||||
|
||||
func (w *Writer) UintptrStr(n uintptr) {
|
||||
w.Buffer.EnsureSpace(20)
|
||||
w.Buffer.Buf = append(w.Buffer.Buf, '"')
|
||||
w.Buffer.Buf = strconv.AppendUint(w.Buffer.Buf, uint64(n), 10)
|
||||
w.Buffer.Buf = append(w.Buffer.Buf, '"')
|
||||
}
|
||||
|
||||
func (w *Writer) Int8Str(n int8) {
|
||||
w.Buffer.EnsureSpace(4)
|
||||
w.Buffer.Buf = append(w.Buffer.Buf, '"')
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue