diff options
author | Matt Strapp <matt@mattstrapp.net> | 2024-10-18 14:07:53 -0500 |
---|---|---|
committer | Matt Strapp <matt@mattstrapp.net> | 2024-10-18 14:08:24 -0500 |
commit | e2e4f70f6b14d46d7dbbd2e0d5e7c3c3c69b47cc (patch) | |
tree | eff37b3aa48182cde75e996d9ecfe2db7b1b2932 /go.mod | |
download | wsl-tui-e2e4f70f6b14d46d7dbbd2e0d5e7c3c3c69b47cc.tar wsl-tui-e2e4f70f6b14d46d7dbbd2e0d5e7c3c3c69b47cc.tar.gz wsl-tui-e2e4f70f6b14d46d7dbbd2e0d5e7c3c3c69b47cc.tar.bz2 wsl-tui-e2e4f70f6b14d46d7dbbd2e0d5e7c3c3c69b47cc.tar.lz wsl-tui-e2e4f70f6b14d46d7dbbd2e0d5e7c3c3c69b47cc.tar.xz wsl-tui-e2e4f70f6b14d46d7dbbd2e0d5e7c3c3c69b47cc.tar.zst wsl-tui-e2e4f70f6b14d46d7dbbd2e0d5e7c3c3c69b47cc.zip |
Initial commit
Signed-off-by: Matt Strapp <matt@mattstrapp.net>
Diffstat (limited to 'go.mod')
-rw-r--r-- | go.mod | 36 |
1 files changed, 36 insertions, 0 deletions
@@ -0,0 +1,36 @@ +module git.mattstrapp.net/wsl-tui + +go 1.23.2 + +require ( + github.com/adrg/xdg v0.5.1 + github.com/charmbracelet/huh v0.6.0 + github.com/locusts-r-us/locusts v0.0.0-20241017222834-aea14464705c + github.com/pelletier/go-toml/v2 v2.2.3 +) + +require ( + github.com/atotto/clipboard v0.1.4 // indirect + github.com/aymanbagabas/go-osc52/v2 v2.0.1 // indirect + github.com/catppuccin/go v0.2.0 // indirect + github.com/charmbracelet/bubbles v0.20.0 // indirect + github.com/charmbracelet/bubbletea v1.1.0 // indirect + github.com/charmbracelet/lipgloss v0.13.0 // indirect + github.com/charmbracelet/x/ansi v0.2.3 // indirect + github.com/charmbracelet/x/exp/strings v0.0.0-20240722160745-212f7b056ed0 // indirect + github.com/charmbracelet/x/term v0.2.0 // indirect + github.com/dustin/go-humanize v1.0.1 // indirect + github.com/erikgeiser/coninput v0.0.0-20211004153227-1c3628e74d0f // indirect + github.com/lucasb-eyer/go-colorful v1.2.0 // 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.16 // indirect + github.com/mitchellh/hashstructure/v2 v2.0.2 // indirect + github.com/muesli/ansi v0.0.0-20230316100256-276c6243b2f6 // indirect + github.com/muesli/cancelreader v0.2.2 // indirect + github.com/muesli/termenv v0.15.3-0.20240618155329-98d742f6907a // indirect + github.com/rivo/uniseg v0.4.7 // indirect + golang.org/x/sync v0.8.0 // indirect + golang.org/x/sys v0.26.0 // indirect + golang.org/x/text v0.18.0 // indirect +) |