Executed `go mod tidy`.

This commit is contained in:
Jakub Sobon 2022-07-07 13:41:12 -04:00
parent cf2f350dff
commit f3c638c8e9
No known key found for this signature in database
GPG Key ID: F2451A77FB05D3B7
2 changed files with 8 additions and 0 deletions

View File

@ -16,6 +16,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Bump github.com/gdamore/tcell from 2.4.0 to 2.5.1.
- Bump github.com/nsf/termbox-go to v1.1.1.
- Change the Go version in `go.mod` to 1.17.
- Executed `go mod tidy`.
### Fixed

7
go.mod
View File

@ -7,6 +7,13 @@ require (
github.com/kylelemons/godebug v1.1.0
github.com/mattn/go-runewidth v0.0.13
github.com/nsf/termbox-go v1.1.1
)
require (
github.com/gdamore/encoding v1.0.0 // indirect
github.com/lucasb-eyer/go-colorful v1.2.0 // indirect
github.com/rivo/uniseg v0.2.0 // indirect
golang.org/x/sys v0.0.0-20220704084225-05e143d24a9e // indirect
golang.org/x/term v0.0.0-20220526004731-065cf7ba2467 // indirect
golang.org/x/text v0.3.7 // indirect
)