File tree Expand file tree Collapse file tree 1 file changed +22
-16
lines changed
Expand file tree Collapse file tree 1 file changed +22
-16
lines changed Original file line number Diff line number Diff line change @@ -30,12 +30,13 @@ github.com/KyleBanks/depth/cmd/depth
3030 ├ flag
3131 ├ fmt
3232 ├ io
33- ├ log
3433 ├ os
3534 ├ strings
3635 └ github.com/KyleBanks/depth
37- ├ fmt
36+ ├ bytes
37+ ├ errors
3838 ├ go/build
39+ ├ os
3940 ├ path
4041 ├ sort
4142 └ strings
@@ -56,6 +57,7 @@ You can also use `depth` on the Go standard library:
5657$ depth strings
5758strings
5859 ├ errors
60+ ├ internal/cpu
5961 ├ io
6062 ├ unicode
6163 └ unicode/utf8
@@ -68,13 +70,16 @@ Visualizing multiple packages at a time is supported by simply naming the packag
6870$ depth strings github.com/KyleBanks/depth
6971strings
7072 ├ errors
73+ ├ internal/cpu
7174 ├ io
7275 ├ unicode
7376 └ unicode/utf8
74775 dependencies (5 internal, 0 external, 0 testing).
7578github.com/KyleBanks/depth
76- ├ fmt
79+ ├ bytes
80+ ├ errors
7781 ├ go/build
82+ ├ os
7883 ├ path
7984 ├ sort
8085 └ strings
@@ -89,19 +94,20 @@ By default, `depth` only resolves the top level of dependencies for standard lib
8994$ depth -internal strings
9095strings
9196 ├ errors
97+ ├ internal/cpu
9298 ├ io
93- ├ errors
94- └ sync
95- ├ internal/race
96- └ unsafe
97- ├ runtime
98- ├ runtime/internal/atomic
99- └ unsafe
100- ├ runtime/internal/sys
101- └ unsafe
102- ├ sync/atomic
103- └ unsafe
104- └ unsafe
99+ │ ├ errors
100+ │ └ sync
101+ │ ├ internal/race
102+ │ │ └ unsafe
103+ │ ├ runtime
104+ │ │ ├ runtime/internal/atomic
105+ │ │ │ └ unsafe
106+ │ │ ├ runtime/internal/sys
107+ │ │ └ unsafe
108+ │ ├ sync/atomic
109+ │ │ └ unsafe
110+ │ └ unsafe
105111 ├ unicode
106112 └ unicode/utf8
10711312 dependencies (12 internal, 0 external, 0 testing).
@@ -118,7 +124,6 @@ github.com/KyleBanks/depth/cmd/depth
118124 ├ flag
119125 ├ fmt
120126 ├ io
121- ├ log
122127 ├ os
123128 ├ strings
124129 └ github.com/KyleBanks/depth
@@ -137,6 +142,7 @@ strings
137142 ├ bytes
138143 ├ errors
139144 ├ fmt
145+ ├ internal/cpu
140146 ├ io
141147 ├ io/ioutil
142148 ├ math/rand
You can’t perform that action at this time.
0 commit comments