Skip to content

Commit

Permalink
feat: add ssh example
Browse files Browse the repository at this point in the history
  • Loading branch information
aymanbagabas committed Aug 22, 2023
1 parent b5e2519 commit e29c09a
Show file tree
Hide file tree
Showing 3 changed files with 362 additions and 24 deletions.
26 changes: 17 additions & 9 deletions examples/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,28 +3,35 @@ module examples
go 1.17

require (
github.com/charmbracelet/bubbles v0.16.2-0.20230821152602-eda891258c02
github.com/charmbracelet/bubbles v0.16.2-0.20230822172454-fed025b01dab
github.com/charmbracelet/bubbletea v0.24.2
github.com/charmbracelet/glamour v0.6.0
github.com/charmbracelet/harmonica v0.2.0
github.com/charmbracelet/lipgloss v0.7.1
github.com/charmbracelet/x/exp/teatest v0.0.0-20230508155401-2bd6fa14c46a
github.com/charmbracelet/lipgloss v0.8.0
github.com/charmbracelet/log v0.2.4
github.com/charmbracelet/ssh v0.0.0-20230822194956-1a051f898e09
github.com/charmbracelet/wish v1.1.1
github.com/charmbracelet/x/exp/teatest v0.0.0-20230707174939-50fb4f48b5b3
github.com/fogleman/ease v0.0.0-20170301025033-8da417bf1776
github.com/lucasb-eyer/go-colorful v1.2.0
github.com/mattn/go-isatty v0.0.18
github.com/mattn/go-isatty v0.0.19
github.com/muesli/reflow v0.3.0
github.com/muesli/termenv v0.15.2
github.com/muesli/termenv v0.15.3-0.20230822202044-434aa9a5f283
)

require (
github.com/alecthomas/chroma v0.10.0 // indirect
github.com/anmitsu/go-shlex v0.0.0-20200514113438-38f4b401e2be // indirect
github.com/atotto/clipboard v0.1.4 // indirect
github.com/aymanbagabas/go-osc52/v2 v2.0.1 // indirect
github.com/aymanbagabas/go-udiff v0.1.0 // indirect
github.com/aymerick/douceur v0.2.0 // indirect
github.com/caarlos0/sshmarshal v0.1.0 // indirect
github.com/charmbracelet/keygen v0.4.2 // indirect
github.com/containerd/console v1.0.4-0.20230313162750-1ae8d489ac81 // indirect
github.com/dlclark/regexp2 v1.4.0 // indirect
github.com/dustin/go-humanize v1.0.1 // indirect
github.com/go-logfmt/logfmt v0.6.0 // indirect
github.com/gorilla/css v1.0.0 // indirect
github.com/mattn/go-localereader v0.0.1 // indirect
github.com/mattn/go-runewidth v0.0.14 // indirect
Expand All @@ -36,11 +43,12 @@ require (
github.com/sahilm/fuzzy v0.1.1-0.20230530133925-c48e322e2a8f // indirect
github.com/yuin/goldmark v1.5.2 // indirect
github.com/yuin/goldmark-emoji v1.0.1 // indirect
golang.org/x/net v0.7.0 // indirect
golang.org/x/crypto v0.8.0 // indirect
golang.org/x/net v0.9.0 // indirect
golang.org/x/sync v0.1.0 // indirect
golang.org/x/sys v0.7.0 // indirect
golang.org/x/term v0.6.0 // indirect
golang.org/x/text v0.7.0 // indirect
golang.org/x/sys v0.10.0 // indirect
golang.org/x/term v0.7.0 // indirect
golang.org/x/text v0.9.0 // indirect
)

replace github.com/charmbracelet/bubbletea => ../
Loading

0 comments on commit e29c09a

Please sign in to comment.