-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathgo.mod
More file actions
32 lines (22 loc) · 853 Bytes
/
Copy pathgo.mod
File metadata and controls
32 lines (22 loc) · 853 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
27
28
29
30
31
32
module github.com/vanroy/microcli
go 1.24.2
require github.com/urfave/cli/v3 v3.3.2
require github.com/c-bata/go-prompt v0.2.6
require github.com/thoas/go-funk v0.9.3
require github.com/go-resty/resty/v2 v2.16.5
require github.com/BurntSushi/toml v1.4.0
require github.com/gobwas/glob v0.2.2
require github.com/zalando/go-keyring v0.2.6
require golang.org/x/term v0.31.0
require (
al.essio.dev/pkg/shellescape v1.5.1 // indirect
github.com/danieljoos/wincred v1.2.2 // indirect
github.com/godbus/dbus/v5 v5.1.0 // indirect
github.com/mattn/go-colorable v0.1.7 // indirect
github.com/mattn/go-isatty v0.0.12 // indirect
github.com/mattn/go-runewidth v0.0.9 // indirect
github.com/mattn/go-tty v0.0.3 // indirect
github.com/pkg/term v1.2.0-beta.2 // indirect
golang.org/x/net v0.33.0 // indirect
golang.org/x/sys v0.32.0 // indirect
)