update gogo protobuf

and rebuild protobuf file
This commit is contained in:
Steven Allen 2018-08-08 10:59:27 -07:00
parent 7869425e41
commit ca4bfd6539
3 changed files with 2553 additions and 60 deletions

View File

@ -7,12 +7,6 @@
"dvcsimport": "github.com/libp2p/go-floodsub"
},
"gxDependencies": [
{
"author": "whyrusleeping",
"hash": "QmZ4Qi3GaRbjcx28Sme5eMH7RQjGkt8wHxt2a65oLaeFEV",
"name": "gogo-protobuf",
"version": "0.0.0"
},
{
"author": "whyrusleeping",
"hash": "QmYftoT56eEfUBTD3erR6heXuPSUhGRezSmhSU8LeczP8b",
@ -65,6 +59,12 @@
"hash": "QmemVjhp1UuWPQqrWSvPcaqH3QJRMjMqNm4T2RULMkDDQe",
"name": "go-libp2p-swarm",
"version": "3.0.6"
},
{
"author": "whyrusleeping",
"hash": "QmdxUuburamoF6zF9qjeQC4WYcWGbWuRmdLacMEsW8ioD8",
"name": "gogo-protobuf",
"version": "0.0.0"
}
],
"gxVersion": "0.9.0",

11
pb/Makefile Normal file
View File

@ -0,0 +1,11 @@
PB = $(wildcard *.proto)
GO = $(PB:.proto=.pb.go)
all: $(GO)
%.pb.go: %.proto
protoc --proto_path=$(GOPATH)/src:. --gogofast_out=. $<
clean:
rm -f *.pb.go
rm -f *.go

File diff suppressed because it is too large Load Diff