mirror of
https://github.com/fluencelabs/tendermint
synced 2025-04-25 06:42:16 +00:00
* update gogo/protobuf version from v1.2.1 to v1.3.0 Also errcheck from v1.1.0 to v1.2.0 See full diff in - https://github.com/gogo/protobuf/compare/v1.2.1...v1.3.0 - https://github.com/kisielk/errcheck/compare/v1.1.0...v1.2.0 Changelog: Tested versions: go 1.12.9 protoc 3.7.1 Improvements: plugin/stringer - Handle repeated and/or nullable types a bit better now. plugin/size - Remove the loop in sovXXX by using bit twiddling. Thanks: https://github.com/apelisse plugin/marshalto - Implemented a reverse marshal strategy which allows for faster marshalling. This now avoids a recursive (and repeated) call to Size(). Thanks: https://github.com/apelisse plugin/compare - Added support for for oneof types. Bug fixes: protoc-gen-gogo/generator - Fix assignment to entry in nil map. Thanks: https://github.com/tgulacsi protoc-gen-gogo/generator - Allows plugins to call RecordTypeUse without panicking. Thanks: https://github.com/fedenusy proto/extensions - Fixed set extension regression. We did not clear the extensions before setting. io/uint32 - fix uint32reader bug that causes ReadMsg to recreate buffer when lengths are the same. Thanks: https://github.com/SebiSujar proto/table_merge: Fix merge of non-nullable slices. Thanks: https://github.com/euroelessar Upstream commits: merged in golang/protobuf commit 318d17de72747ed1c16502681db4b2bb709a92d0 - Add UnimplementedServer for server interface merged in golang/protobuf commit b85cd75de734650db18a99a943fe351d41387800 - protoc-gen-go/grpc: inline errUnimplemented function merged in golang/protobuf commit d3c38a4eb4970272b87a425ae00ccc4548e2f9bb - protoc-gen-go/grpc: use status and code packages only if needed merged in golang/protobuf commit e91709a02e0e8ff8b86b7aa913fdc9ae9498e825 - fix indentation in jsonpb with Any messages merged in golang/protobuf commit 8d0c54c1246661d9a51ca0ba455d22116d485eaa - protoc-gen-go: generate XXX_OneofWrappers instead of XXX_OneofFuncs Misc: extensions.md - Markdown update. Thanks: https://github.com/TennyZhuang Readme.md - Added user. go/protoc update - Updated to go1.12.x and protoc 3.7.1 Makefile update - fix go vet shadow tool reference test/mixbench - Update mixbench tool. Expose runnable benchmarks via flags. * update certstrap * update golangci-lint from v1.13.2 to v1.17.1 * update gox as well * test * comment out golangci temporary * comment out go-deadlock deps
47 lines
2.0 KiB
Modula-2
47 lines
2.0 KiB
Modula-2
module github.com/tendermint/tendermint
|
|
|
|
go 1.12
|
|
|
|
require (
|
|
github.com/VividCortex/gohistogram v1.0.0 // indirect
|
|
github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973 // indirect
|
|
github.com/btcsuite/btcd v0.0.0-20190115013929-ed77733ec07d
|
|
github.com/btcsuite/btcutil v0.0.0-20180706230648-ab6388e0c60a
|
|
github.com/fortytw2/leaktest v1.2.0
|
|
github.com/go-kit/kit v0.6.0
|
|
github.com/go-logfmt/logfmt v0.3.0
|
|
github.com/go-stack/stack v1.8.0 // indirect
|
|
github.com/gogo/protobuf v1.3.0
|
|
github.com/golang/protobuf v1.3.2
|
|
github.com/google/gofuzz v1.0.0 // indirect
|
|
github.com/gorilla/websocket v1.2.0
|
|
github.com/hashicorp/hcl v1.0.0 // indirect
|
|
github.com/inconshreveable/mousetrap v1.0.0 // indirect
|
|
github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515 // indirect
|
|
github.com/libp2p/go-buffer-pool v0.0.1
|
|
github.com/magiconair/properties v1.8.0
|
|
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect
|
|
github.com/mitchellh/mapstructure v1.1.2 // indirect
|
|
github.com/pelletier/go-toml v1.2.0 // indirect
|
|
github.com/pkg/errors v0.8.1
|
|
github.com/prometheus/client_golang v0.9.1
|
|
github.com/prometheus/client_model v0.0.0-20180712105110-5c3871d89910 // indirect
|
|
github.com/prometheus/common v0.0.0-20181020173914-7e9e6cabbd39 // indirect
|
|
github.com/prometheus/procfs v0.0.0-20181005140218-185b4288413d // indirect
|
|
github.com/rcrowley/go-metrics v0.0.0-20180503174638-e2704e165165
|
|
github.com/rs/cors v1.6.0
|
|
github.com/snikch/goodman v0.0.0-20171125024755-10e37e294daa
|
|
github.com/spf13/afero v1.1.2 // indirect
|
|
github.com/spf13/cast v1.3.0 // indirect
|
|
github.com/spf13/cobra v0.0.1
|
|
github.com/spf13/jwalterweatherman v1.0.0 // indirect
|
|
github.com/spf13/pflag v1.0.3 // indirect
|
|
github.com/spf13/viper v1.0.0
|
|
github.com/stretchr/testify v1.3.0
|
|
github.com/tendermint/go-amino v0.14.1
|
|
github.com/tendermint/tm-db v0.1.1
|
|
golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2
|
|
golang.org/x/net v0.0.0-20190628185345-da137c7871d7
|
|
google.golang.org/grpc v1.22.0
|
|
)
|