[go-nuts] Re: Go vet reporting errors in vendor

2018-09-24 Thread Josh Harshman
Correction, the the first error on the output of go vet is solved. On Monday, September 24, 2018 at 3:26:27 PM UTC-7, Josh Harshman wrote: > > Tried updating other packages and got into a vicious cycle of > incompatibilities. > > Here is my dep status > PROJECT CONST

[go-nuts] Re: Go vet reporting errors in vendor

2018-09-24 Thread Josh Harshman
Tried updating other packages and got into a vicious cycle of incompatibilities. Here is my dep status PROJECT CONSTRAINT VERSION REVISION LATEST PKGS USED github.com/BurntSushi/tomlv0.3.0 v0.3.0 b26

[go-nuts] Re: Go vet reporting errors in vendor

2018-09-24 Thread Josh Harshman
Here I go starting to answer my own question :D Solved the first issue by updating the vendored version of github.com/golang/protobuf. I saw that my version didn't define the InternalMessageInfo type and that upstream did. My guess is that during solve, dep didn't pull the correct version. On