From f3c638c8e9614ba3986ad0865c57d1a5e29af246 Mon Sep 17 00:00:00 2001 From: Jakub Sobon Date: Thu, 7 Jul 2022 13:41:12 -0400 Subject: [PATCH] Executed `go mod tidy`. --- CHANGELOG.md | 1 + go.mod | 7 +++++++ 2 files changed, 8 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index daee85b..f553920 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/go.mod b/go.mod index 4f647e2..b096ba5 100644 --- a/go.mod +++ b/go.mod @@ -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 )