From d204e58bafdbf40b371b2ef9be8fdb0bd2e27288 Mon Sep 17 00:00:00 2001 From: John O'Keefe Date: Tue, 16 Jan 2024 10:21:27 -0500 Subject: [PATCH] finished chapter eight --- playground/go.mod | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/playground/go.mod b/playground/go.mod index e75be9c..a882925 100644 --- a/playground/go.mod +++ b/playground/go.mod @@ -1,10 +1,11 @@ module trying_out_go -go 1.21.3 +go 1.21.5 require ( git.linuxhg.com/Go_Training/datafile v0.0.0-20240111160218-6989e96515a9 git.linuxhg.com/Go_Training/keyboard v0.0.0-20240111160241-d208f095efce + git.linuxhg.com/Go_Training/magazine v0.0.0-20240112152452-7bd91fa7e6c2 github.com/charmbracelet/bubbles v0.17.1 github.com/charmbracelet/bubbletea v0.25.0 github.com/charmbracelet/lipgloss v0.9.1 @@ -16,9 +17,9 @@ require ( github.com/aymanbagabas/go-osc52/v2 v2.0.1 // indirect github.com/containerd/console v1.0.4-0.20230313162750-1ae8d489ac81 // indirect github.com/daviddengcn/go-colortext v1.0.0 // indirect - github.com/dixonwille/wlog/v3 v3.0.1 // indirect + github.com/dixonwille/wlog/v3 v3.0.4 // indirect github.com/lucasb-eyer/go-colorful v1.2.0 // indirect - github.com/mattn/go-isatty v0.0.19 // indirect + github.com/mattn/go-isatty v0.0.20 // indirect github.com/mattn/go-localereader v0.0.1 // indirect github.com/mattn/go-runewidth v0.0.15 // indirect github.com/muesli/ansi v0.0.0-20230316100256-276c6243b2f6 // indirect @@ -27,8 +28,8 @@ require ( github.com/muesli/termenv v0.15.2 // indirect github.com/rivo/uniseg v0.4.4 // indirect github.com/sahilm/fuzzy v0.1.1-0.20230530133925-c48e322e2a8f // indirect - golang.org/x/sync v0.4.0 // indirect - golang.org/x/sys v0.13.0 // indirect - golang.org/x/term v0.13.0 // indirect - golang.org/x/text v0.13.0 // indirect + golang.org/x/sync v0.6.0 // indirect + golang.org/x/sys v0.16.0 // indirect + golang.org/x/term v0.16.0 // indirect + golang.org/x/text v0.14.0 // indirect )