|
|
|
|
|
by verdverm
500 days ago
|
|
`go.mod` contains the dependency list and minimum version required `go.sum` is a lock file for the exact versions to use (ensures reproducibility) `go mod graph` will produce the dependency graph with resolved versions `go list -deps ./...` will give you all packages used by a module or directory, depending on the args you provide `go get -u ./...` will update all dependencies to their latest version Here is a post about Go toolchain reproducibility and verification: https://go.dev/blog/rebuild You are being downvoted for being wrong and talking about downvoting, which is called out as something not to do in the posting & commenting guidelines |
|