deptree icon indicating copy to clipboard operation
deptree copied to clipboard

show golang dependence like tree

Results 4 deptree issues
Sort by recently updated
recently updated
newest added

$ go mod graph | deptree -d 2 -t -a call 'go list -u -m -json all', be patient... 2023/07/14 10:48:35 exit status 1, go: updates to go.sum needed, disabled...

for a go application with go version 1.19 this suggestion was done by deptree: `github.com/stretchr/[email protected] (go1.13) => [v1.8.3]` testify 1.8.2 is a [go 1.13 module](https://github.com/stretchr/testify/blob/v1.8.2/go.mod), but v1.8.3 is a [go...

This behavior seems to be caused by **some of** the modules which are required with "// indirect" in go.mod. Such pending upgrades can not be resolved automatically (e.g. by "go...

invalid

We use vendoring, and I get this error message: ``` ❯ deptree call 'go list -u -m -json all', be patient... 2024/08/06 09:27:41 exit status 1, go: can't determine available...