-
Notifications
You must be signed in to change notification settings - Fork 22
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
1 parent
0e3352b
commit be02af3
Showing
5 changed files
with
37 additions
and
14 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
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,23 +1,45 @@ | ||
module github.com/plumber-cd/terraform-backend-git | ||
|
||
go 1.13 | ||
go 1.17 | ||
|
||
require ( | ||
github.com/Microsoft/go-winio v0.5.1 // indirect | ||
github.com/ProtonMail/go-crypto v0.0.0-20220113124808-70ae35bab23f // indirect | ||
github.com/felixge/httpsnoop v1.0.2 // indirect | ||
github.com/go-git/go-billy/v5 v5.3.1 | ||
github.com/go-git/go-git/v5 v5.4.2 | ||
github.com/gorilla/handlers v1.5.1 | ||
github.com/kevinburke/ssh_config v1.1.0 // indirect | ||
github.com/mitchellh/go-homedir v1.1.0 | ||
github.com/sergi/go-diff v1.2.0 // indirect | ||
github.com/spf13/afero v1.8.0 // indirect | ||
github.com/spf13/cobra v1.3.0 | ||
github.com/spf13/viper v1.10.1 | ||
github.com/xanzy/ssh-agent v0.3.1 | ||
golang.org/x/crypto v0.0.0-20220112180741-5e0467b6c7ce | ||
golang.org/x/net v0.0.0-20220114011407-0dd24b26b47d // indirect | ||
golang.org/x/sys v0.0.0-20220114195835-da31bd327af9 | ||
) | ||
|
||
require ( | ||
github.com/Microsoft/go-winio v0.5.1 // indirect | ||
github.com/ProtonMail/go-crypto v0.0.0-20220113124808-70ae35bab23f // indirect | ||
github.com/acomagu/bufpipe v1.0.3 // indirect | ||
github.com/emirpasic/gods v1.12.0 // indirect | ||
github.com/felixge/httpsnoop v1.0.2 // indirect | ||
github.com/fsnotify/fsnotify v1.5.1 // indirect | ||
github.com/go-git/gcfg v1.5.0 // indirect | ||
github.com/hashicorp/hcl v1.0.0 // indirect | ||
github.com/imdario/mergo v0.3.12 // indirect | ||
github.com/inconshreveable/mousetrap v1.0.0 // indirect | ||
github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 // indirect | ||
github.com/kevinburke/ssh_config v1.1.0 // indirect | ||
github.com/magiconair/properties v1.8.5 // indirect | ||
github.com/mitchellh/mapstructure v1.4.3 // indirect | ||
github.com/pelletier/go-toml v1.9.4 // indirect | ||
github.com/sergi/go-diff v1.2.0 // indirect | ||
github.com/spf13/afero v1.8.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/subosito/gotenv v1.2.0 // indirect | ||
golang.org/x/net v0.0.0-20220114011407-0dd24b26b47d // indirect | ||
golang.org/x/term v0.0.0-20210220032956-6a3ed077a48d // indirect | ||
golang.org/x/text v0.3.7 // indirect | ||
gopkg.in/ini.v1 v1.66.2 // indirect | ||
gopkg.in/warnings.v0 v0.1.2 // indirect | ||
gopkg.in/yaml.v2 v2.4.0 // 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