-
Notifications
You must be signed in to change notification settings - Fork 36
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
699 additions
and
177 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,35 +1,50 @@ | ||
module github.com/hellofresh/klepto | ||
|
||
go 1.14 | ||
go 1.17 | ||
|
||
require ( | ||
github.com/BurntSushi/toml v0.3.1 | ||
github.com/Masterminds/semver v1.5.0 // indirect | ||
github.com/Masterminds/squirrel v1.2.0 | ||
github.com/corpix/uarand v0.1.1 // indirect | ||
github.com/go-sql-driver/mysql v1.5.0 | ||
github.com/golang/protobuf v1.3.3 // indirect | ||
github.com/hellofresh/updater-go v1.0.1 | ||
github.com/BurntSushi/toml v0.4.1 | ||
github.com/Masterminds/squirrel v1.5.0 | ||
github.com/go-sql-driver/mysql v1.6.0 | ||
github.com/hellofresh/updater-go/v3 v3.0.0 | ||
github.com/icrowley/fake v0.0.0-20180203215853-4178557ae428 | ||
github.com/konsorten/go-windows-terminal-sequences v1.0.2 // indirect | ||
github.com/lib/pq v1.3.0 | ||
github.com/lib/pq v1.10.3 | ||
github.com/palantir/stacktrace v0.0.0-20161112013806-78658fd2d177 | ||
github.com/pelletier/go-toml v1.6.0 // indirect | ||
github.com/pkg/errors v0.9.1 | ||
github.com/shurcooL/githubv4 v0.0.0-20191127044304-8f68eb5628d0 // indirect | ||
github.com/shurcooL/graphql v0.0.0-20181231061246-d48a9a75455f // indirect | ||
github.com/sirupsen/logrus v1.5.0 | ||
github.com/spf13/afero v1.2.2 // indirect | ||
github.com/spf13/cast v1.3.1 // indirect | ||
github.com/spf13/cobra v0.0.5 | ||
github.com/sirupsen/logrus v1.8.1 | ||
github.com/spf13/cobra v1.2.1 | ||
github.com/spf13/viper v1.9.0 | ||
github.com/stretchr/testify v1.7.0 | ||
) | ||
|
||
require ( | ||
github.com/Masterminds/semver/v3 v3.1.1 // indirect | ||
github.com/corpix/uarand v0.1.1 // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/fsnotify/fsnotify v1.5.1 // indirect | ||
github.com/golang/protobuf v1.5.2 // indirect | ||
github.com/hashicorp/hcl v1.0.0 // indirect | ||
github.com/inconshreveable/mousetrap v1.0.0 // indirect | ||
github.com/lann/builder v0.0.0-20180802200727-47ae307949d0 // indirect | ||
github.com/lann/ps v0.0.0-20150810152359-62de8c46ede0 // indirect | ||
github.com/magiconair/properties v1.8.5 // indirect | ||
github.com/mitchellh/mapstructure v1.4.2 // indirect | ||
github.com/pelletier/go-toml v1.9.4 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/shurcooL/githubv4 v0.0.0-20201206200315-234843c633fa // indirect | ||
github.com/shurcooL/graphql v0.0.0-20200928012149-18c5c3165e3a // indirect | ||
github.com/spf13/afero v1.6.0 // indirect | ||
github.com/spf13/cast v1.4.1 // indirect | ||
github.com/spf13/jwalterweatherman v1.1.0 // indirect | ||
github.com/spf13/pflag v1.0.5 // indirect | ||
github.com/spf13/viper v1.6.2 | ||
github.com/stretchr/testify v1.5.1 | ||
golang.org/x/net v0.0.0-20200114155413-6afb5195e5aa // indirect | ||
golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d // indirect | ||
golang.org/x/sys v0.0.0-20200323222414-85ca7c5b95cd // indirect | ||
google.golang.org/appengine v1.6.5 // indirect | ||
gopkg.in/ini.v1 v1.51.1 // indirect | ||
gopkg.in/yaml.v2 v2.2.8 // indirect | ||
github.com/subosito/gotenv v1.2.0 // indirect | ||
golang.org/x/net v0.0.0-20210510120150-4163338589ed // indirect | ||
golang.org/x/oauth2 v0.0.0-20210819190943-2bc19b11175f // indirect | ||
golang.org/x/sys v0.0.0-20210823070655-63515b42dcdf // indirect | ||
golang.org/x/text v0.3.6 // indirect | ||
google.golang.org/appengine v1.6.7 // indirect | ||
google.golang.org/protobuf v1.27.1 // indirect | ||
gopkg.in/ini.v1 v1.63.2 // indirect | ||
gopkg.in/yaml.v2 v2.4.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect | ||
) |
Oops, something went wrong.