mirror of
https://github.com/Gouryella/drip.git
synced 2026-02-23 21:00:44 +00:00
- Explicitly included golang.org/x/sys v0.38.0 in go.mod and removed indirect references - Optimized process liveness detection logic on Windows platforms using the golang.org/x/sys/windows package - Used OpenProcess and GetExitCodeProcess instead of Signal detection methods to improve accuracy - Updated command-line output and added an ASCII banner to improve user experience - Added blank lines to the github.com/spf13/cobra package to standardize import format
37 lines
1.3 KiB
Modula-2
37 lines
1.3 KiB
Modula-2
module drip
|
|
|
|
go 1.25.4
|
|
|
|
require (
|
|
github.com/charmbracelet/lipgloss v1.1.0
|
|
github.com/goccy/go-json v0.10.5
|
|
github.com/gorilla/websocket v1.5.3
|
|
github.com/spf13/cobra v1.10.1
|
|
github.com/vmihailenco/msgpack/v5 v5.4.1
|
|
go.uber.org/zap v1.27.1
|
|
golang.org/x/crypto v0.45.0
|
|
golang.org/x/sys v0.38.0
|
|
gopkg.in/yaml.v3 v3.0.1
|
|
)
|
|
|
|
require (
|
|
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.8.0 // indirect
|
|
github.com/charmbracelet/x/cellbuf v0.0.13-0.20250311204145-2c3ea96c31dd // indirect
|
|
github.com/charmbracelet/x/term v0.2.1 // indirect
|
|
github.com/inconshreveable/mousetrap v1.1.0 // indirect
|
|
github.com/lucasb-eyer/go-colorful v1.2.0 // indirect
|
|
github.com/mattn/go-isatty v0.0.20 // indirect
|
|
github.com/mattn/go-runewidth v0.0.16 // indirect
|
|
github.com/muesli/termenv v0.16.0 // indirect
|
|
github.com/rivo/uniseg v0.4.7 // indirect
|
|
github.com/spf13/pflag v1.0.10 // indirect
|
|
github.com/stretchr/testify v1.11.1 // indirect
|
|
github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect
|
|
github.com/xo/terminfo v0.0.0-20220910002029-abceb7e1c41e // indirect
|
|
go.uber.org/multierr v1.11.0 // indirect
|
|
golang.org/x/net v0.47.0 // indirect
|
|
golang.org/x/text v0.31.0 // indirect
|
|
)
|