forked from warrensbox/terraform-switcher
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Include changes from warrensbox#232: Upgrade to Go 1.18
- Loading branch information
Showing
3 changed files
with
455 additions
and
134 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,45 @@ | ||
module github.com/warrensbox/terraform-switcher | ||
|
||
go 1.13 | ||
go 1.18 | ||
|
||
require ( | ||
github.com/chzyer/logex v1.1.10 // indirect | ||
github.com/chzyer/readline v0.0.0-20171208011716-f6d7a1f6fbf3 // indirect | ||
github.com/chzyer/test v0.0.0-20180213035817-a1ea475d72b1 // indirect | ||
github.com/go-openapi/strfmt v0.21.2 | ||
github.com/hashicorp/go-version v1.5.0 | ||
github.com/hashicorp/hcl2 v0.0.0-20191002203319-fb75b3253c80 | ||
github.com/hashicorp/terraform-config-inspect v0.0.0-20211115214459-90acf1ca460f | ||
github.com/juju/ansiterm v0.0.0-20180109212912-720a0952cc2a // indirect | ||
github.com/lunixbochs/vtclean v0.0.0-20170504063817-d14193dfc626 // indirect | ||
github.com/magiconair/properties v1.8.1 // indirect | ||
github.com/manifoldco/promptui v0.2.2-0.20180308161052-c0c0d3afc6a0 | ||
github.com/mattn/go-colorable v0.0.9 // indirect | ||
github.com/mattn/go-isatty v0.0.3 // indirect | ||
github.com/manifoldco/promptui v0.9.0 | ||
github.com/mitchellh/go-homedir v1.1.0 | ||
github.com/pborman/getopt v0.0.0-20170112200414-7148bc3a4c30 | ||
github.com/pelletier/go-toml v1.4.0 // indirect | ||
github.com/spf13/afero v1.2.2 // indirect | ||
github.com/pborman/getopt v1.1.0 | ||
github.com/spf13/viper v1.11.0 | ||
golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a | ||
) | ||
|
||
require ( | ||
github.com/agext/levenshtein v1.2.2 // indirect | ||
github.com/apparentlymart/go-textseg v1.0.0 // indirect | ||
github.com/asaskevich/govalidator v0.0.0-20200907205600-7a23bdc65eef // indirect | ||
github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e // indirect | ||
github.com/fsnotify/fsnotify v1.5.1 // indirect | ||
github.com/go-openapi/errors v0.19.8 // indirect | ||
github.com/go-stack/stack v1.8.0 // indirect | ||
github.com/google/go-cmp v0.5.7 // indirect | ||
github.com/hashicorp/hcl v1.0.0 // indirect | ||
github.com/hashicorp/hcl/v2 v2.0.0 // indirect | ||
github.com/magiconair/properties v1.8.6 // indirect | ||
github.com/mitchellh/go-wordwrap v1.0.0 // indirect | ||
github.com/mitchellh/mapstructure v1.4.3 // indirect | ||
github.com/oklog/ulid v1.3.1 // indirect | ||
github.com/pelletier/go-toml v1.9.4 // indirect | ||
github.com/pelletier/go-toml/v2 v2.0.0-beta.8 // indirect | ||
github.com/spf13/afero v1.8.2 // indirect | ||
github.com/spf13/cast v1.4.1 // indirect | ||
github.com/spf13/jwalterweatherman v1.1.0 // indirect | ||
github.com/spf13/viper v1.4.0 | ||
github.com/zclconf/go-cty v1.8.0 // indirect | ||
golang.org/x/sys v0.0.0-20210630005230-0f9fa26af87c | ||
github.com/spf13/pflag v1.0.5 // indirect | ||
github.com/subosito/gotenv v1.2.0 // indirect | ||
github.com/zclconf/go-cty v1.1.0 // indirect | ||
go.mongodb.org/mongo-driver v1.7.5 // indirect | ||
golang.org/x/text v0.3.7 // indirect | ||
gopkg.in/ini.v1 v1.66.4 // indirect | ||
gopkg.in/yaml.v2 v2.4.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect | ||
) |
Oops, something went wrong.