I have dependencies (direct and some indirect) listed in my go.mod file. 
This was initially populated using `go ./...` after creating the go.mod 
using `go mod init`.

I now want to upgrade the dependencies and the indirect dependencies in the 
go.mod file to their latest versions.

If I run `go get -u`, it pulls in the latest versions of the dependencies 
as well as all the dependencies for running their tests on all platforms. 
In effect, my go.mod file has more then tripled in size. 

Is there any way to update my direct (and some required indirect) 
dependencies required just to build my project in go.mod?

-- 
You received this message because you are subscribed to the Google Groups 
"golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to golang-nuts+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to