-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathgo.mod
25 lines (22 loc) · 791 Bytes
/
go.mod
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
module github.com/ksdme/beam
go 1.23.2
require (
github.com/alexflint/go-arg v1.5.1
github.com/btcsuite/btcutil v1.0.2
github.com/dustin/go-humanize v1.0.1
github.com/gliderlabs/ssh v0.3.7
github.com/muesli/termenv v0.15.2
)
require (
github.com/alexflint/go-scalar v1.2.0 // indirect
github.com/anmitsu/go-shlex v0.0.0-20200514113438-38f4b401e2be // indirect
github.com/aymanbagabas/go-osc52/v2 v2.0.1 // indirect
github.com/lucasb-eyer/go-colorful v1.2.0 // indirect
github.com/mattn/go-isatty v0.0.18 // indirect
github.com/mattn/go-runewidth v0.0.14 // indirect
github.com/rivo/uniseg v0.2.0 // indirect
github.com/stretchr/testify v1.9.0 // indirect
golang.org/x/crypto v0.17.0 // indirect
golang.org/x/sys v0.27.0 // indirect
golang.org/x/term v0.26.0 // indirect
)