Skip to content

Commit

Permalink
Updated dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
eko committed Apr 13, 2022
1 parent a06bc6f commit 34ac5e4
Show file tree
Hide file tree
Showing 1,161 changed files with 387,240 additions and 50 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/all.yml
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
go_version: [ '1.14', '1.15', '1.16', '1.17' ]
go_version: [ '1.15', '1.16', '1.17', '1.18' ]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v1
Expand Down
29 changes: 14 additions & 15 deletions go.mod
@@ -1,11 +1,11 @@
module github.com/eko/gocache/v2

go 1.17
go 1.18

require (
github.com/XiaoMi/pegasus-go-client v0.0.0-20210427083443-f3b6b08bc4c2
github.com/allegro/bigcache/v2 v2.2.5
github.com/bradfitz/gomemcache v0.0.0-20190913173617-a41fca850d0b
github.com/allegro/bigcache/v3 v3.0.2
github.com/bradfitz/gomemcache v0.0.0-20220106215444-fb4bf637b56d
github.com/coocood/freecache v1.2.1
github.com/dgraph-io/ristretto v0.1.0
github.com/go-redis/redis/v8 v8.11.5
Expand All @@ -22,30 +22,29 @@ require (

require (
github.com/beorn7/perks v1.0.1 // indirect
github.com/cenkalti/backoff/v4 v4.1.0 // indirect
github.com/cenkalti/backoff/v4 v4.1.3 // indirect
github.com/cespare/xxhash/v2 v2.1.2 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
github.com/dustin/go-humanize v1.0.0 // indirect
github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b // indirect
github.com/golang/glog v1.0.0 // indirect
github.com/golang/protobuf v1.5.2 // indirect
github.com/gopherjs/gopherjs v0.0.0-20181017120253-0766667cb4d1 // indirect
github.com/gopherjs/gopherjs v0.0.0-20220410123724-9e86199038b0 // indirect
github.com/jtolds/gls v4.20.0+incompatible // indirect
github.com/konsorten/go-windows-terminal-sequences v1.0.3 // indirect
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect
github.com/pegasus-kv/thrift v0.13.0 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/prometheus/client_model v0.2.0 // indirect
github.com/prometheus/common v0.32.1 // indirect
github.com/prometheus/common v0.33.0 // indirect
github.com/prometheus/procfs v0.7.3 // indirect
github.com/sirupsen/logrus v1.6.0 // indirect
golang.org/x/net v0.0.0-20210525063256-abc453219eb5 // indirect
golang.org/x/sys v0.0.0-20220114195835-da31bd327af9 // indirect
google.golang.org/appengine v1.6.6 // indirect
google.golang.org/protobuf v1.26.0 // indirect
github.com/sirupsen/logrus v1.8.1 // indirect
golang.org/x/net v0.0.0-20220412020605-290c469a71a5 // indirect
golang.org/x/sys v0.0.0-20220412211240-33da011f77ad // indirect
google.golang.org/appengine v1.6.7 // indirect
google.golang.org/protobuf v1.28.0 // indirect
gopkg.in/natefinch/lumberjack.v2 v2.0.0 // indirect
gopkg.in/tomb.v2 v2.0.0-20161208151619-d5d1b5820637 // indirect
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c // indirect
k8s.io/apimachinery v0.0.0-20191123233150-4c4803ed55e3 // indirect
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
k8s.io/apimachinery v0.23.5 // indirect
)
132 changes: 99 additions & 33 deletions go.sum

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion store/bigcache_bench_test.go
Expand Up @@ -7,7 +7,7 @@ import (
"testing"
"time"

"github.com/allegro/bigcache/v2"
"github.com/allegro/bigcache/v3"
)

func BenchmarkBigcacheSet(b *testing.B) {
Expand Down
202 changes: 202 additions & 0 deletions vendor/github.com/XiaoMi/pegasus-go-client/LICENSE

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

115 changes: 115 additions & 0 deletions vendor/github.com/XiaoMi/pegasus-go-client/admin/client.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 34ac5e4

Please sign in to comment.