forked from jsiebens/hashi-up
-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
35 lines (32 loc) · 1.22 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
module github.com/jsiebens/hashi-up
go 1.19
require (
github.com/Masterminds/semver v1.5.0
github.com/alexellis/go-execute v0.5.0
github.com/bramvdbogaerde/go-scp v1.2.0
github.com/cheggaaa/pb/v3 v3.1.0
github.com/hashicorp/hcl/v2 v2.14.0
github.com/mitchellh/go-homedir v1.1.0
github.com/muesli/coral v1.0.0
github.com/pkg/errors v0.9.1
github.com/thanhpk/randstr v1.0.4
github.com/zclconf/go-cty v1.11.0
golang.org/x/crypto v0.0.0-20220829220503-c86fa9a7ed90
)
require (
github.com/VividCortex/ewma v1.2.0 // indirect
github.com/agext/levenshtein v1.2.3 // indirect
github.com/apparentlymart/go-textseg/v13 v13.0.0 // indirect
github.com/fatih/color v1.13.0 // indirect
github.com/google/go-cmp v0.5.8 // indirect
github.com/inconshreveable/mousetrap v1.0.1 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.16 // indirect
github.com/mattn/go-runewidth v0.0.13 // indirect
github.com/mitchellh/go-wordwrap v1.0.1 // indirect
github.com/rivo/uniseg v0.3.4 // indirect
github.com/spf13/pflag v1.0.5 // indirect
golang.org/x/sys v0.0.0-20220906165534-d0df966e6959 // indirect
golang.org/x/term v0.0.0-20220722155259-a9ba230a4035 // indirect
golang.org/x/text v0.3.7 // indirect
)