Hello,
I use dep as a package manager and my Gopkg.toml contains 0.8.3 as dgraph dependency, which is working fine.
But now if I upgrade it to 1.0.3,
“dep ensure -v”
throws me an error:
(71) ✗ github.com/dgraph-io/dgraph/client at v1.0.3 has problem subpkg(s):
(71) github.com/dgraph-io/dgraph/client has err (*build.NoGoError); required by (root).
I suspect the reason might be proto files in client packages are not compiled. I can say that since they are compiled in 0.8.3
Any inputs on how to get around this?
Thanks.