diff options
author | Ayke van Laethem <[email protected]> | 2024-06-21 19:25:17 +0200 |
---|---|---|
committer | Ron Evans <[email protected]> | 2024-06-23 19:11:06 +0200 |
commit | 868262f4a7f24753e5b8dab28cae59330506bedf (patch) | |
tree | a008676ff266b0c9249c95390d96f0c426db5760 /go.mod | |
parent | d33ace7b59b41a358bb40366f086e135db56aaac (diff) | |
download | tinygo-868262f4a7f24753e5b8dab28cae59330506bedf.tar.gz tinygo-868262f4a7f24753e5b8dab28cae59330506bedf.zip |
all: use latest version of x/tools
We previously picked a work-in-progress patch, but this is the proper
fix for this race condition. I think we should use that instead of
relying on the previous work-in-progress patch.
Diffstat (limited to 'go.mod')
-rw-r--r-- | go.mod | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -19,7 +19,7 @@ require ( go.bug.st/serial v1.6.0 golang.org/x/net v0.26.0 golang.org/x/sys v0.21.0 - golang.org/x/tools v0.21.1-0.20240508182429-e35e4ccd0d2d + golang.org/x/tools v0.22.1-0.20240621165957-db513b091504 gopkg.in/yaml.v2 v2.4.0 tinygo.org/x/go-llvm v0.0.0-20240518103902-697964f2a9dc ) @@ -45,5 +45,3 @@ require ( github.com/spf13/afero v1.11.0 // indirect golang.org/x/text v0.16.0 // indirect ) - -replace golang.org/x/tools => github.com/tinygo-org/tools v0.0.0-20240612102102-36af80766fc9 |