-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a12e6d5
commit 59f0bf7
Showing
14 changed files
with
3,053 additions
and
2,138 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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,13 +1,56 @@ | ||
module github.com/ajeetdsouza/clidle | ||
|
||
go 1.13 | ||
go 1.22.0 | ||
|
||
toolchain go1.23.2 | ||
|
||
require ( | ||
github.com/adrg/xdg v0.4.0 | ||
github.com/charmbracelet/bubbletea v0.19.4-0.20220202015352-c5d3b1e1544a | ||
github.com/charmbracelet/lipgloss v0.4.0 | ||
github.com/charmbracelet/wish v0.2.0 | ||
github.com/gliderlabs/ssh v0.3.6 | ||
github.com/google/renameio v1.0.1 | ||
github.com/adrg/xdg v0.5.2 | ||
github.com/charmbracelet/bubbletea v1.1.2 | ||
github.com/charmbracelet/lipgloss v0.13.1 | ||
github.com/charmbracelet/ssh v0.0.0-20240725163421-eb71b85b27aa | ||
github.com/charmbracelet/wish v1.4.3 | ||
github.com/pkg/errors v0.9.1 | ||
golang.org/x/exp v0.0.0-20231108232855-2478ac86f678 | ||
modernc.org/sqlite v1.33.1 | ||
) | ||
|
||
require ( | ||
github.com/anmitsu/go-shlex v0.0.0-20200514113438-38f4b401e2be // indirect | ||
github.com/aymanbagabas/go-osc52/v2 v2.0.1 // indirect | ||
github.com/charmbracelet/keygen v0.5.1 // indirect | ||
github.com/charmbracelet/log v0.4.0 // indirect | ||
github.com/charmbracelet/x/ansi v0.4.2 // indirect | ||
github.com/charmbracelet/x/conpty v0.1.0 // indirect | ||
github.com/charmbracelet/x/errors v0.0.0-20240508181413-e8d8b6e2de86 // indirect | ||
github.com/charmbracelet/x/input v0.2.0 // indirect | ||
github.com/charmbracelet/x/term v0.2.0 // indirect | ||
github.com/charmbracelet/x/termios v0.1.0 // indirect | ||
github.com/creack/pty v1.1.21 // indirect | ||
github.com/dustin/go-humanize v1.0.1 // indirect | ||
github.com/erikgeiser/coninput v0.0.0-20211004153227-1c3628e74d0f // indirect | ||
github.com/go-logfmt/logfmt v0.6.0 // indirect | ||
github.com/google/uuid v1.6.0 // indirect | ||
github.com/hashicorp/golang-lru/v2 v2.0.7 // 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/muesli/ansi v0.0.0-20230316100256-276c6243b2f6 // indirect | ||
github.com/muesli/cancelreader v0.2.2 // indirect | ||
github.com/muesli/termenv v0.15.3-0.20240509142007-81b8f94111d5 // indirect | ||
github.com/ncruces/go-strftime v0.1.9 // indirect | ||
github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // indirect | ||
github.com/rivo/uniseg v0.4.7 // indirect | ||
github.com/xo/terminfo v0.0.0-20220910002029-abceb7e1c41e // indirect | ||
golang.org/x/crypto v0.26.0 // indirect | ||
golang.org/x/sync v0.8.0 // indirect | ||
golang.org/x/sys v0.26.0 // indirect | ||
golang.org/x/text v0.19.0 // indirect | ||
modernc.org/gc/v3 v3.0.0-20240107210532-573471604cb6 // indirect | ||
modernc.org/libc v1.55.3 // indirect | ||
modernc.org/mathutil v1.6.0 // indirect | ||
modernc.org/memory v1.8.0 // indirect | ||
modernc.org/strutil v1.2.0 // indirect | ||
modernc.org/token v1.1.0 // indirect | ||
) |
Oops, something went wrong.