-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix for panic on invalid arrays on left side of assignment (#280)
* Fix for panic on invalid arrays on left side of assignement * bump deps including fortio/terminal
- Loading branch information
Showing
4 changed files
with
41 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,25 @@ | ||
module grol.io/grol | ||
|
||
go 1.23.3 | ||
go 1.23.5 | ||
|
||
require ( | ||
fortio.org/cli v1.9.2 | ||
fortio.org/log v1.17.1 | ||
fortio.org/safecast v1.0.0 | ||
fortio.org/sets v1.2.0 | ||
fortio.org/struct2env v0.4.1 | ||
fortio.org/terminal v0.27.1 | ||
fortio.org/terminal v0.27.2 | ||
fortio.org/testscript v0.3.2 // only for tests | ||
fortio.org/version v1.0.4 | ||
github.com/rivo/uniseg v0.4.7 | ||
golang.org/x/image v0.23.0 | ||
) | ||
|
||
require ( | ||
fortio.org/term v0.23.0-fortio-6 // indirect | ||
fortio.org/term v0.29.0-fortio-1 // indirect | ||
github.com/kortschak/goroutine v1.1.2 // indirect | ||
golang.org/x/crypto/x509roots/fallback v0.0.0-20240916204253-42ee18b96377 // indirect | ||
golang.org/x/exp v0.0.0-20240909161429-701f63a606c0 // indirect | ||
golang.org/x/sys v0.27.0 // indirect | ||
golang.org/x/tools v0.25.0 // indirect | ||
golang.org/x/crypto/x509roots/fallback v0.0.0-20250118192723-a8ea4be81f07 // indirect | ||
golang.org/x/exp v0.0.0-20250106191152-7588d65b2ba8 // indirect | ||
golang.org/x/sys v0.29.0 // indirect | ||
golang.org/x/tools v0.29.0 // indirect | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters