-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathgo.mod
59 lines (54 loc) · 2.29 KB
/
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
module github.com/JorgeReus/aws-sso-creds
go 1.17
require (
github.com/aws/aws-sdk-go v1.40.12
github.com/bigkevmcd/go-configparser v0.0.0-20210106142102-909504547ead
github.com/charmbracelet/bubbles v0.8.0
github.com/charmbracelet/bubbletea v0.14.2-0.20210701150621-0886ee26b073
github.com/charmbracelet/lipgloss v0.3.0 // indirect
github.com/containerd/console v1.0.2 // indirect
github.com/ktr0731/go-fuzzyfinder v0.5.1
github.com/mitchellh/go-homedir v1.1.0
github.com/muesli/reflow v0.3.0 // indirect
github.com/muesli/termenv v0.9.0
github.com/pkg/browser v0.0.0-20210706143420-7d21f8c997e2
gopkg.in/ini.v1 v1.67.0
)
require github.com/deckarep/golang-set v1.8.0
require (
github.com/go-playground/validator/v10 v10.11.1
github.com/spf13/cobra v1.6.1
github.com/spf13/viper v1.13.0
)
require (
github.com/fsnotify/fsnotify v1.5.4 // indirect
github.com/gdamore/encoding v1.0.0 // indirect
github.com/gdamore/tcell/v2 v2.4.0 // indirect
github.com/go-playground/locales v0.14.0 // indirect
github.com/go-playground/universal-translator v0.18.0 // indirect
github.com/hashicorp/hcl v1.0.0 // indirect
github.com/inconshreveable/mousetrap v1.0.1 // indirect
github.com/jmespath/go-jmespath v0.4.0 // indirect
github.com/leodido/go-urn v1.2.1 // indirect
github.com/lucasb-eyer/go-colorful v1.2.0 // indirect
github.com/magiconair/properties v1.8.6 // indirect
github.com/mattn/go-isatty v0.0.14 // indirect
github.com/mattn/go-runewidth v0.0.13 // indirect
github.com/mitchellh/mapstructure v1.5.0 // indirect
github.com/nsf/termbox-go v0.0.0-20201124104050-ed494de23a00 // indirect
github.com/pelletier/go-toml v1.9.5 // indirect
github.com/pelletier/go-toml/v2 v2.0.5 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/rivo/uniseg v0.2.0 // indirect
github.com/spf13/afero v1.8.2 // indirect
github.com/spf13/cast v1.5.0 // indirect
github.com/spf13/jwalterweatherman v1.1.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/subosito/gotenv v1.4.1 // indirect
golang.org/x/crypto v0.0.0-20220411220226-7b82a4e95df4 // indirect
golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a // indirect
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211 // indirect
golang.org/x/text v0.3.7 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)