* go.mod: use bbolt from github

This commit is contained in:
Simon Zolin 2019-11-20 20:14:28 +03:00
parent 81e8bbe63c
commit 7c81efcbcb
2 changed files with 2 additions and 2 deletions

2
go.mod
View File

@ -17,7 +17,7 @@ require (
github.com/miekg/dns v1.1.19
github.com/sparrc/go-ping v0.0.0-20181106165434-ef3ab45e41b0
github.com/stretchr/testify v1.4.0
go.etcd.io/bbolt v1.3.3
go.etcd.io/bbolt v1.3.3 // indirect
golang.org/x/crypto v0.0.0-20191001170739-f9e2070545dc
golang.org/x/net v0.0.0-20191002035440-2ec189313ef0
golang.org/x/sys v0.0.0-20191002091554-b397fe3ad8ed

View File

@ -13,7 +13,7 @@ import (
"time"
"github.com/AdguardTeam/golibs/log"
"go.etcd.io/bbolt"
"github.com/etcd-io/bbolt"
"golang.org/x/crypto/bcrypt"
)