-
Notifications
You must be signed in to change notification settings - Fork 16
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
4 changed files
with
47 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
./gist | ||
|
||
dist/* | ||
gist |
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,41 +1,37 @@ | ||
module github.com/b4b4r07/gist | ||
module github.com/babarot/gist | ||
|
||
go 1.18 | ||
go 1.22.5 | ||
|
||
require ( | ||
github.com/b4b4r07/gist v1.2.6 | ||
github.com/b4b4r07/go-cli-log v0.0.0-20200124120248-8fac4d71de01 | ||
github.com/caarlos0/spin v1.1.1-0.20200123125736-2bc438191c89 | ||
github.com/dustin/go-humanize v1.0.0 | ||
github.com/dustin/go-humanize v1.0.1 | ||
github.com/google/go-github v17.0.0+incompatible | ||
github.com/manifoldco/promptui v0.7.0 | ||
github.com/pkg/browser v0.0.0-20180916011732-0a3d74bf9ce4 | ||
github.com/spf13/cobra v0.0.5 | ||
golang.org/x/crypto v0.0.0-20190701094942-4def268fd1a4 | ||
golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d | ||
github.com/manifoldco/promptui v0.9.0 | ||
github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c | ||
github.com/spf13/cobra v1.8.1 | ||
golang.org/x/crypto v0.32.0 | ||
golang.org/x/oauth2 v0.25.0 | ||
gopkg.in/src-d/go-git.v4 v4.13.1 | ||
) | ||
|
||
require ( | ||
github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e // indirect | ||
github.com/emirpasic/gods v1.12.0 // indirect | ||
github.com/golang/protobuf v1.2.0 // indirect | ||
github.com/google/go-querystring v1.0.0 // indirect | ||
github.com/hashicorp/logutils v1.0.0 // indirect | ||
github.com/inconshreveable/mousetrap v1.0.0 // indirect | ||
github.com/inconshreveable/mousetrap v1.1.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-20190725054713-01f96b0aa0cd // indirect | ||
github.com/lunixbochs/vtclean v0.0.0-20180621232353-2d01aacdc34a // indirect | ||
github.com/mattn/go-colorable v0.1.4 // indirect | ||
github.com/mattn/go-isatty v0.0.8 // indirect | ||
github.com/mitchellh/go-homedir v1.1.0 // indirect | ||
github.com/sergi/go-diff v1.0.0 // indirect | ||
github.com/spf13/pflag v1.0.3 // indirect | ||
github.com/spf13/pflag v1.0.5 // indirect | ||
github.com/src-d/gcfg v1.4.0 // indirect | ||
github.com/xanzy/ssh-agent v0.2.1 // indirect | ||
golang.org/x/net v0.0.0-20190724013045-ca1201d0de80 // indirect | ||
golang.org/x/sys v0.0.0-20190726091711-fc99dfbffb4e // indirect | ||
google.golang.org/appengine v1.4.0 // indirect | ||
golang.org/x/net v0.21.0 // indirect | ||
golang.org/x/sys v0.29.0 // indirect | ||
golang.org/x/term v0.28.0 // indirect | ||
gopkg.in/src-d/go-billy.v4 v4.3.2 // indirect | ||
gopkg.in/warnings.v0 v0.1.2 // 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