When adding new dependencies using dep ensure -add <package> I see dep adding the complete repository of the package, instead of just the parts I require.
For example I added aws-sdk-go and dep ensure put 87MB of files into my vendors folder, even though I only use the AWS Secrets Manager service.
To resolve this you need to define
[prune]settings which determine what files and directories can be deemed unnecessary, and thus automatically removed from vendor/.The following options are currently available:
unused-packagesindicates that files from directories that do not appear in the package import graph should be prunednon-goprunes files that are not used by Gogo-testsprunes Go test filesOut of an abundance of caution, dep non-optionally preserves files that may have legal significance.
Pruning options are disabled by default. However, generating a
Gopkg.tomlviadep initwill add lines to enablego-testsandunused-packagesprune options at the root level.The same prune options can be defined per-project. An additional name field is required and, as with
[[constraint]]and[[override]], should be a source root, not just any import path.Almost all projects will be fine without setting any project-specific rules, and enabling the following pruning rules globally:
It is usually safe to set
non-go = true, as well. However, asdeponly has a clear model for the role played by Go files, and non-Go files necessarily fall outside that model, there can be no comparable general definition of safety.