go.mod: update to tagged x/tools version

The tagging process is blocked with the following error:

    golang.org/x/mod/zip tested by
    	golang.org/x/mod/zip.test imports
    	golang.org/x/tools/txtar loaded from golang.org/x/tools@v0.0.0-20191119224855-298f0cb1881e,
    	but go 1.16 would select v0.1.12

Resolve the error by upgrading tools.

For golang/go#48523.

Change-Id: I37d6673c2880f1170152237a0a4807eb54b95c15
Reviewed-on: https://go-review.googlesource.com/c/mod/+/443936
Auto-Submit: Heschi Kreinick <heschi@google.com>
Reviewed-by: Dmitri Shuralyov <dmitshur@golang.org>
Run-TryBot: Heschi Kreinick <heschi@google.com>
TryBot-Result: Gopher Robot <gobot@golang.org>
Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
2 files changed
tree: 3e074d99e568a60ecc540ccea9fdd099cdb1fa30
  1. gosumcheck/
  2. internal/
  3. modfile/
  4. module/
  5. semver/
  6. sumdb/
  7. zip/
  8. codereview.cfg
  9. go.mod
  10. go.sum
  11. LICENSE
  12. PATENTS
  13. README.md
README.md

mod

PkgGoDev

This repository holds packages for writing tools that work directly with Go module mechanics. That is, it is for direct manipulation of Go modules themselves.

It is NOT about supporting general development tools that need to do things like load packages in module mode. That use case, where modules are incidental rather than the focus, should remain in x/tools, specifically x/tools/go/packages.

The specific case of loading packages should still be done by invoking the go command, which remains the single point of truth for package loading algorithms.