Skip to content

Commit

Permalink
feat: Bump packages
Browse files Browse the repository at this point in the history
  • Loading branch information
RamiAwar committed Dec 7, 2024
1 parent 321f94e commit eb79ca8
Show file tree
Hide file tree
Showing 3 changed files with 110 additions and 102 deletions.
2 changes: 1 addition & 1 deletion cmd/list.go
Original file line number Diff line number Diff line change
Expand Up @@ -86,5 +86,5 @@ func init() {
RootCmd.AddCommand(listCmd)
listCmd.Flags().BoolVarP(&config.Flag.OneLine, "oneline", "", false,
`Display snippets in one line`)
listCmd.Flags().StringVar(&config.Flag.FilterTag, "t", "", "list by specified tags as comma separated values")
listCmd.Flags().StringVarP(&config.Flag.FilterTag, "tags", "t", "", "list by specified tags as comma separated values")
}
52 changes: 23 additions & 29 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,34 +1,31 @@
module github.com/knqyf263/pet

go 1.20
go 1.21

require (
github.com/atotto/clipboard v0.1.4
github.com/briandowns/spinner v0.0.0-20170614154858-48dbb65d7bd5
github.com/chzyer/logex v1.1.10 // indirect
github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e
github.com/chzyer/test v0.0.0-20210722231415-061457976a23 // indirect
github.com/briandowns/spinner v1.23.1
github.com/chzyer/readline v1.5.1
github.com/fatih/color v1.18.0
github.com/google/go-github v15.0.0+incompatible
github.com/inconshreveable/mousetrap v1.0.0 // indirect
github.com/google/go-github v17.0.0+incompatible
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/mattn/go-runewidth v0.0.10
github.com/pkg/errors v0.8.0
github.com/spf13/cobra v0.0.3
github.com/spf13/pflag v1.0.1 // indirect
github.com/xanzy/go-gitlab v0.50.3
golang.org/x/oauth2 v0.0.0-20181106182150-f42d05182288
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c // indirect
github.com/mattn/go-runewidth v0.0.16
github.com/pkg/errors v0.9.1
github.com/spf13/cobra v1.8.1
github.com/spf13/pflag v1.0.5 // indirect
github.com/xanzy/go-gitlab v0.114.0
golang.org/x/oauth2 v0.24.0
)

require gopkg.in/alessio/shellescape.v1 v1.0.0-20170105083845-52074bc9df61

require (
github.com/awesome-gocui/gocui v1.1.0
github.com/go-test/deep v1.1.0
github.com/go-test/deep v1.1.1
github.com/pelletier/go-toml v1.9.5
golang.org/x/term v0.15.0
golang.org/x/term v0.27.0
)

require (
Expand All @@ -39,18 +36,15 @@ require (

require (
github.com/alessio/shellescape v1.4.1 // indirect
github.com/gdamore/encoding v1.0.0 // indirect
github.com/gdamore/tcell/v2 v2.4.0 // indirect
github.com/golang/protobuf v1.2.0 // indirect
github.com/google/go-querystring v1.0.0 // indirect
github.com/hashicorp/go-cleanhttp v0.5.1 // indirect
github.com/hashicorp/go-retryablehttp v0.6.8 // indirect
github.com/lucasb-eyer/go-colorful v1.0.3 // indirect
github.com/rivo/uniseg v0.1.0 // indirect
github.com/gdamore/encoding v1.0.1 // indirect
github.com/gdamore/tcell/v2 v2.7.4 // indirect
github.com/google/go-querystring v1.1.0 // indirect
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
github.com/hashicorp/go-retryablehttp v0.7.7 // indirect
github.com/lucasb-eyer/go-colorful v1.2.0 // indirect
github.com/rivo/uniseg v0.4.7 // indirect
github.com/stretchr/testify v1.10.0
golang.org/x/net v0.17.0 // indirect
golang.org/x/sys v0.25.0 // indirect
golang.org/x/text v0.14.0 // indirect
golang.org/x/time v0.0.0-20191024005414-555d28b269f0 // indirect
google.golang.org/appengine v1.3.0 // indirect
golang.org/x/sys v0.28.0 // indirect
golang.org/x/text v0.21.0 // indirect
golang.org/x/time v0.8.0 // indirect
)
Loading

0 comments on commit eb79ca8

Please sign in to comment.