diff options
| author | Russ Cox <rsc@golang.org> | 2023-01-14 13:57:52 -0500 |
|---|---|---|
| committer | Gopher Robot <gobot@golang.org> | 2023-01-30 17:48:21 +0000 |
| commit | 4373c6f5768bebeacbedebfddb19013c5771bba6 (patch) | |
| tree | 99ef132e2a9e33547b86eca28fe338a630bed877 /src/cmd/go.mod | |
| parent | a34cec8e411a2599ca7d2373dd2773aec25634ea (diff) | |
| download | go-4373c6f5768bebeacbedebfddb19013c5771bba6.tar.xz | |
cmd: import latest golang.org/x/tools
go get golang.org/x/tools@ff9bea528a4d (CL 462817, 2023-01-19)
go mod tidy
go mod vendor
This sets up for using passes/directive in cmd/vet
(that CL will add those actual files, with a new go mod vendor).
Note that it also brings in golang.org/x/sys@17fce3a (CL 463675, 2023-01-26),
to get v0.4.0 with the bug fixed in that CL to keep the build working.
The update of x/sys is in both std and cmd to keep them in sync.
Change-Id: If8528f4667d14e674b986830abd41a7c733a3969
Reviewed-on: https://go-review.googlesource.com/c/go/+/462200
Auto-Submit: Russ Cox <rsc@golang.org>
Run-TryBot: Russ Cox <rsc@golang.org>
Reviewed-by: Bryan Mills <bcmills@google.com>
TryBot-Result: Gopher Robot <gobot@golang.org>
Diffstat (limited to 'src/cmd/go.mod')
| -rw-r--r-- | src/cmd/go.mod | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cmd/go.mod b/src/cmd/go.mod index 4070301206..da54384011 100644 --- a/src/cmd/go.mod +++ b/src/cmd/go.mod @@ -7,9 +7,9 @@ require ( golang.org/x/arch v0.1.1-0.20221116201807-1bb480fc256a golang.org/x/mod v0.7.0 golang.org/x/sync v0.1.0 - golang.org/x/sys v0.3.0 + golang.org/x/sys v0.4.1-0.20230127010248-17fce3ac51c7 golang.org/x/term v0.2.0 - golang.org/x/tools v0.3.1-0.20230118190848-070db2996ebe + golang.org/x/tools v0.5.1-0.20230119221225-ff9bea528a4d ) require github.com/ianlancetaylor/demangle v0.0.0-20220319035150-800ac71e25c2 // indirect |
