Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update dependencies #11

Merged
merged 2 commits into from
Aug 18, 2020
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ os:
- osx

go:
- 1.12.x
- 1.13.x
- 1.14.x
klauspost marked this conversation as resolved.
Show resolved Hide resolved
- master

env:
Expand Down
2 changes: 1 addition & 1 deletion blobstore/boltstore/boltstore.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"time"

"github.com/Vivino/rankdb/blobstore"
"github.com/etcd-io/bbolt"
"go.etcd.io/bbolt"
)

// NewBoltStore returns a new BoltStore.
Expand Down
14 changes: 6 additions & 8 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -10,20 +10,17 @@ require (
github.com/dgrijalva/jwt-go v3.2.0+incompatible
github.com/dimfeld/httppath v0.0.0-20170720192232-ee938bf73598 // indirect
github.com/dimfeld/httptreemux v4.0.1+incompatible // indirect
github.com/etcd-io/bbolt v1.3.3
github.com/go-ini/ini v1.42.0 // indirect
github.com/goadesign/goa v1.4.1
github.com/gofrs/uuid v3.2.0+incompatible // indirect
github.com/google/go-cmp v0.3.0
github.com/google/gxui v0.0.0-20151028112939-f85e0a97b3a4 // indirect
github.com/goreleaser/goreleaser v0.113.0
github.com/hashicorp/go-immutable-radix v0.0.0-20170725221215-8aac27015308 // indirect
github.com/hashicorp/golang-lru v0.5.1
github.com/hashicorp/uuid v0.0.0-20160311170451-ebb0a03e909c // indirect
github.com/klauspost/compress v1.9.1
github.com/klauspost/cpuid v1.2.1 // indirect
github.com/klauspost/compress v1.10.10
github.com/klauspost/readahead v1.3.1
github.com/klauspost/shutdown2 v1.1.0
github.com/kr/pretty v0.1.0 // indirect
github.com/manveru/faker v0.0.0-20160419072036-717f7cf83fb7 // indirect
github.com/manveru/gobdd v0.0.0-20131210092515-f1a17fdd710b // indirect
github.com/mattn/go-colorable v0.0.9
Expand All @@ -40,9 +37,10 @@ require (
github.com/ugorji/go/codec v1.1.7
github.com/yuin/gopher-lua v0.0.0-20160527050859-47f0f792b296 // indirect
github.com/zach-klippenstein/goregen v0.0.0-20160303162051-795b5e3961ea // indirect
go.etcd.io/bbolt v1.3.3 // indirect
golang.org/x/lint v0.0.0-20190409202823-959b441ac422
gopkg.in/ini.v1 v1.42.0 // indirect
go.etcd.io/bbolt v1.3.5
golang.org/x/sync v0.0.0-20190423024810-112230192c58 // indirect
golang.org/x/text v0.3.2 // indirect
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 // indirect
)

go 1.13
Loading