-
Notifications
You must be signed in to change notification settings - Fork 181
Expand file tree
/
Copy pathgo.mod
More file actions
26 lines (23 loc) · 820 Bytes
/
go.mod
File metadata and controls
26 lines (23 loc) · 820 Bytes
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
26
module github.com/pressly/sup
go 1.24.0
require (
github.com/cheggaaa/pb/v3 v3.1.7
github.com/goware/prefixer v0.0.0-20160118172347-395022866408
github.com/mikkeloscar/sshconfig v0.1.1
github.com/pkg/errors v0.9.1
golang.org/x/crypto v0.48.0
gopkg.in/yaml.v2 v2.4.0
)
require (
github.com/VividCortex/ewma v1.2.0 // indirect
github.com/clipperhouse/uax29/v2 v2.7.0 // indirect
github.com/fatih/color v1.18.0 // indirect
github.com/kr/pretty v0.2.0 // indirect
github.com/mattn/go-colorable v0.1.14 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/mattn/go-runewidth v0.0.20 // indirect
github.com/mitchellh/go-homedir v1.1.0 // indirect
golang.org/x/sys v0.41.0 // indirect
golang.org/x/term v0.40.0 // indirect
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect
)