mirror of
https://github.com/jixishi/SerialTerminalForWindowsTerminal.git
synced 2026-06-15 16:42:46 +00:00
7b6f4f03ab
- Revert fillScreen to Left/Top (normal terminal behavior) - Simplify startForwardForm to 2 fields: Type (Tab cycle) + Address - Remove splitAddr/netSplit helpers - Add huh form library dependency for future use Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
59 lines
2.5 KiB
Modula-2
59 lines
2.5 KiB
Modula-2
module github.com/jixishi/SerialTerminalForWindowsTerminal
|
|
|
|
go 1.23.0
|
|
|
|
require (
|
|
github.com/charmbracelet/bubbles v0.21.1-0.20250623103423-23b8fd6302d7
|
|
github.com/charmbracelet/bubbletea v1.3.6
|
|
github.com/charmbracelet/lipgloss v1.1.0
|
|
github.com/fzdwx/infinite v0.12.1
|
|
github.com/spf13/pflag v1.0.5
|
|
github.com/trzsz/trzsz-go v1.1.7
|
|
github.com/yuin/gopher-lua v1.1.1
|
|
github.com/zimolab/charsetconv v0.1.2
|
|
go.bug.st/serial v1.6.2
|
|
golang.org/x/sys v0.33.0
|
|
golang.org/x/term v0.19.0
|
|
)
|
|
|
|
require (
|
|
github.com/UserExistsError/conpty v0.1.2 // indirect
|
|
github.com/akavel/rsrc v0.10.2 // indirect
|
|
github.com/alexflint/go-scalar v1.2.0 // indirect
|
|
github.com/atotto/clipboard v0.1.4 // indirect
|
|
github.com/aymanbagabas/go-osc52/v2 v2.0.1 // indirect
|
|
github.com/charmbracelet/colorprofile v0.2.3-0.20250311203215-f60798e515dc // indirect
|
|
github.com/charmbracelet/x/ansi v0.9.3 // indirect
|
|
github.com/charmbracelet/x/cellbuf v0.0.13 // indirect
|
|
github.com/charmbracelet/x/term v0.2.1 // indirect
|
|
github.com/chzyer/readline v1.5.1 // indirect
|
|
github.com/creack/goselect v0.1.2 // indirect
|
|
github.com/creack/pty v1.1.24 // indirect
|
|
github.com/dchest/jsmin v0.0.0-20220218165748-59f39799265f // indirect
|
|
github.com/duke-git/lancet/v2 v2.2.1 // indirect
|
|
github.com/erikgeiser/coninput v0.0.0-20211004153227-1c3628e74d0f // indirect
|
|
github.com/fzdwx/iter v0.0.0-20230511075109-0afee9319312 // indirect
|
|
github.com/josephspurrier/goversioninfo v1.4.0 // indirect
|
|
github.com/klauspost/compress v1.17.4 // 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/reflow v0.3.0 // indirect
|
|
github.com/muesli/termenv v0.16.0 // indirect
|
|
github.com/ncruces/zenity v0.10.10 // indirect
|
|
github.com/randall77/makefat v0.0.0-20210315173500-7ddd0e42c844 // indirect
|
|
github.com/rivo/uniseg v0.4.7 // indirect
|
|
github.com/rotisserie/eris v0.5.4 // indirect
|
|
github.com/sahilm/fuzzy v0.1.1 // indirect
|
|
github.com/trzsz/go-arg v1.5.3 // indirect
|
|
github.com/trzsz/promptui v0.10.5 // indirect
|
|
github.com/xo/terminfo v0.0.0-20220910002029-abceb7e1c41e // indirect
|
|
golang.org/x/exp v0.0.0-20231006140011-7918f672742d // indirect
|
|
golang.org/x/image v0.14.0 // indirect
|
|
golang.org/x/sync v0.15.0 // indirect
|
|
golang.org/x/text v0.23.0 // indirect
|
|
)
|