-
-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Go 1.16 to 1.18 for embed all support (#197).
- Loading branch information
Showing
2 changed files
with
31 additions
and
20 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,50 @@ | ||
module github.com/plentico/plenti | ||
|
||
go 1.16 | ||
go 1.18 | ||
|
||
require ( | ||
github.com/MakeNowJust/heredoc/v2 v2.0.1 | ||
github.com/Microsoft/go-winio v0.4.16 // indirect | ||
github.com/anmitsu/go-shlex v0.0.0-20200514113438-38f4b401e2be // indirect | ||
github.com/briandowns/spinner v1.12.0 | ||
github.com/fatih/color v1.10.0 // indirect | ||
github.com/fsnotify/fsnotify v1.5.4 | ||
github.com/gerald1248/httpscerts v0.0.0-20170315065746-2c461ceb29ee | ||
github.com/gliderlabs/ssh v0.3.2 // indirect | ||
github.com/go-git/go-git/v5 v5.2.0 | ||
github.com/manifoldco/promptui v0.8.0 | ||
github.com/spf13/afero v1.6.0 | ||
github.com/spf13/cobra v1.1.3 | ||
github.com/tdewolff/minify/v2 v2.11.7 | ||
golang.org/x/net v0.0.0-20210503060351-7fd8e65b6420 | ||
rogchap.com/v8go v0.5.1 | ||
) | ||
|
||
require ( | ||
github.com/Microsoft/go-winio v0.4.16 // indirect | ||
github.com/anmitsu/go-shlex v0.0.0-20200514113438-38f4b401e2be // indirect | ||
github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e // indirect | ||
github.com/emirpasic/gods v1.12.0 // indirect | ||
github.com/fatih/color v1.10.0 // indirect | ||
github.com/gliderlabs/ssh v0.3.2 // indirect | ||
github.com/go-git/gcfg v1.5.0 // indirect | ||
github.com/go-git/go-billy/v5 v5.0.0 // indirect | ||
github.com/google/go-cmp v0.5.6 // indirect | ||
github.com/imdario/mergo v0.3.11 // indirect | ||
github.com/inconshreveable/mousetrap v1.0.0 // indirect | ||
github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 // indirect | ||
github.com/juju/ansiterm v0.0.0-20180109212912-720a0952cc2a // indirect | ||
github.com/kevinburke/ssh_config v0.0.0-20201106050909-4977a11b4351 // indirect | ||
github.com/lunixbochs/vtclean v1.0.0 // indirect | ||
github.com/manifoldco/promptui v0.8.0 | ||
github.com/spf13/afero v1.6.0 | ||
github.com/spf13/cobra v1.1.3 | ||
github.com/mattn/go-colorable v0.1.8 // indirect | ||
github.com/mattn/go-isatty v0.0.12 // indirect | ||
github.com/mitchellh/go-homedir v1.1.0 // indirect | ||
github.com/sergi/go-diff v1.1.0 // indirect | ||
github.com/spf13/pflag v1.0.5 // indirect | ||
github.com/stretchr/testify v1.7.0 // indirect | ||
github.com/tdewolff/minify/v2 v2.11.7 // indirect | ||
github.com/tdewolff/parse/v2 v2.5.32 // indirect | ||
github.com/xanzy/ssh-agent v0.3.0 // indirect | ||
golang.org/x/crypto v0.0.0-20210817164053-32db794688a5 // indirect | ||
golang.org/x/net v0.0.0-20210503060351-7fd8e65b6420 | ||
golang.org/x/sys v0.0.0-20220412211240-33da011f77ad // indirect | ||
golang.org/x/term v0.0.0-20210220032956-6a3ed077a48d // indirect | ||
golang.org/x/text v0.3.6 // indirect | ||
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect | ||
gopkg.in/warnings.v0 v0.1.2 // indirect | ||
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect | ||
rogchap.com/v8go v0.5.1 | ||
) |
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