-
-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
124 additions
and
47 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,54 +1,61 @@ | ||
module github.com/mumoshu/variant | ||
|
||
go 1.12 | ||
go 1.17 | ||
|
||
require ( | ||
github.com/Masterminds/goutils v1.1.0 | ||
github.com/Masterminds/semver v1.4.2 | ||
github.com/Masterminds/sprig v2.18.0+incompatible | ||
github.com/aws/aws-sdk-go v1.16.28 | ||
github.com/bgentry/go-netrc v0.0.0-20140422174119-9fd32a8b3d3d | ||
github.com/davecgh/go-spew v1.1.1 | ||
github.com/fsnotify/fsnotify v1.4.7 | ||
github.com/google/go-cmp v0.3.0 | ||
github.com/google/uuid v1.1.0 | ||
github.com/hashicorp/errwrap v1.0.0 | ||
github.com/hashicorp/go-cleanhttp v0.5.0 | ||
github.com/hashicorp/go-getter v1.0.2 | ||
github.com/hashicorp/go-multierror v1.0.0 | ||
github.com/hashicorp/go-safetemp v1.0.0 | ||
github.com/hashicorp/go-version v1.1.0 | ||
github.com/hashicorp/hcl v1.0.0 | ||
github.com/huandu/xstrings v1.2.0 | ||
github.com/imdario/mergo v0.3.7 | ||
github.com/inconshreveable/mousetrap v1.0.0 | ||
github.com/jmespath/go-jmespath v0.0.0-20180206201540-c2b33e8439af | ||
github.com/juju/errors v0.0.0-20181118221551-089d3ea4e4d5 | ||
github.com/konsorten/go-windows-terminal-sequences v1.0.1 | ||
github.com/kr/pretty v0.1.0 | ||
github.com/kr/text v0.1.0 | ||
github.com/magiconair/properties v1.8.0 | ||
github.com/juju/errors v0.0.0-20200330140219-3fe23663418f | ||
github.com/kr/pretty v0.2.1 | ||
github.com/mattn/go-shellwords v1.0.6 | ||
github.com/mitchellh/colorstring v0.0.0-20150917214807-8631ce90f286 | ||
github.com/mitchellh/go-homedir v1.1.0 | ||
github.com/mitchellh/go-testing-interface v1.0.0 | ||
github.com/mitchellh/mapstructure v1.1.2 | ||
github.com/mumoshu/logrus-bunyan-formatter v0.0.0-20190116072203-0b24af3c58eb | ||
github.com/pelletier/go-toml v1.2.0 | ||
github.com/pkg/errors v0.8.1 | ||
github.com/sirupsen/logrus v1.3.0 | ||
github.com/spf13/afero v1.2.0 | ||
github.com/spf13/cast v1.3.0 | ||
github.com/spf13/cobra v0.0.3 | ||
github.com/spf13/jwalterweatherman v1.0.0 | ||
github.com/spf13/pflag v1.0.3 | ||
github.com/spf13/viper v1.3.1 | ||
github.com/ulikunitz/xz v0.5.5 | ||
github.com/xeipuuv/gojsonpointer v0.0.0-20180127040702-4e3ac2762d5f | ||
github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 | ||
github.com/xeipuuv/gojsonschema v1.1.0 | ||
golang.org/x/crypto v0.0.0-20190103213133-ff983b9c42bc | ||
golang.org/x/sys v0.0.0-20190115152922-a457fd036447 | ||
golang.org/x/text v0.3.0 | ||
gopkg.in/yaml.v2 v2.2.2 | ||
gopkg.in/yaml.v2 v2.4.0 | ||
) | ||
|
||
require ( | ||
github.com/BurntSushi/toml v1.0.0 // indirect | ||
github.com/Masterminds/goutils v1.1.0 // indirect | ||
github.com/Masterminds/semver v1.4.2 // indirect | ||
github.com/aws/aws-sdk-go v1.16.28 // indirect | ||
github.com/bgentry/go-netrc v0.0.0-20140422174119-9fd32a8b3d3d // indirect | ||
github.com/fsnotify/fsnotify v1.4.7 // indirect | ||
github.com/google/uuid v1.1.0 // indirect | ||
github.com/hashicorp/errwrap v1.0.0 // indirect | ||
github.com/hashicorp/go-cleanhttp v0.5.0 // indirect | ||
github.com/hashicorp/go-safetemp v1.0.0 // indirect | ||
github.com/hashicorp/go-version v1.1.0 // indirect | ||
github.com/hashicorp/hcl v1.0.0 // indirect | ||
github.com/imdario/mergo v0.3.7 // indirect | ||
github.com/inconshreveable/mousetrap v1.0.0 // indirect | ||
github.com/jmespath/go-jmespath v0.0.0-20180206201540-c2b33e8439af // indirect | ||
github.com/juju/testing v0.0.0-20211215003918-77eb13d6cad2 // indirect | ||
github.com/konsorten/go-windows-terminal-sequences v1.0.1 // indirect | ||
github.com/kr/text v0.2.0 // indirect | ||
github.com/magiconair/properties v1.8.0 // indirect | ||
github.com/mitchellh/go-homedir v1.1.0 // indirect | ||
github.com/mitchellh/go-testing-interface v1.0.0 // indirect | ||
github.com/mitchellh/mapstructure v1.1.2 // indirect | ||
github.com/pelletier/go-toml v1.2.0 // indirect | ||
github.com/spf13/afero v1.2.0 // indirect | ||
github.com/spf13/cast v1.3.0 // indirect | ||
github.com/spf13/jwalterweatherman v1.0.0 // indirect | ||
github.com/ulikunitz/xz v0.5.5 // indirect | ||
github.com/xeipuuv/gojsonpointer v0.0.0-20180127040702-4e3ac2762d5f // indirect | ||
github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 // indirect | ||
golang.org/x/crypto v0.0.0-20200820211705-5c72a883971a // indirect | ||
golang.org/x/net v0.0.0-20210226172049-e18ecbb05110 // indirect | ||
golang.org/x/sys v0.0.0-20201119102817-f84b799fce68 // indirect | ||
golang.org/x/text v0.3.3 // indirect | ||
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect | ||
) |
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