diff options
author | Ayke van Laethem <[email protected]> | 2024-01-17 15:12:17 +0100 |
---|---|---|
committer | Ayke van Laethem <[email protected]> | 2024-01-18 19:51:52 +0100 |
commit | 0ad15551c84c39d53a9aef1c20c9e9ed8c9e1110 (patch) | |
tree | 45e27a28a0b3231a0ea6d702f6477cda3de3d1f0 /go.mod | |
parent | afd65e224af2442563ed79cc0c7f73fdc699e063 (diff) | |
download | tinygo-0ad15551c84c39d53a9aef1c20c9e9ed8c9e1110.tar.gz tinygo-0ad15551c84c39d53a9aef1c20c9e9ed8c9e1110.zip |
compiler: update golang.org/x/tools/go/ssa package
This update includes support for the new range loops over integers.
Diffstat (limited to 'go.mod')
-rw-r--r-- | go.mod | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -15,8 +15,9 @@ require ( github.com/mattn/go-tty v0.0.4 github.com/sigurn/crc16 v0.0.0-20211026045750-20ab5afb07e3 go.bug.st/serial v1.6.0 - golang.org/x/sys v0.11.0 - golang.org/x/tools v0.12.0 + golang.org/x/net v0.20.0 + golang.org/x/sys v0.16.0 + golang.org/x/tools v0.17.0 gopkg.in/yaml.v2 v2.4.0 tinygo.org/x/go-llvm v0.0.0-20231014233752-75a8a9fe6f74 ) @@ -30,4 +31,5 @@ require ( github.com/josharian/intern v1.0.0 // indirect github.com/mailru/easyjson v0.7.7 // indirect github.com/mattn/go-isatty v0.0.12 // indirect + golang.org/x/text v0.14.0 // indirect ) |