diff --git a/bolt_store.go b/bolt_store.go index 8c56fb9..14e07c6 100644 --- a/bolt_store.go +++ b/bolt_store.go @@ -4,7 +4,7 @@ import ( "errors" "time" - "github.com/boltdb/bolt" + bolt "go.etcd.io/bbolt" "github.com/hashicorp/raft" ) diff --git a/bolt_store_test.go b/bolt_store_test.go index 12b09b2..bc01de4 100644 --- a/bolt_store_test.go +++ b/bolt_store_test.go @@ -8,7 +8,7 @@ import ( "testing" "time" - "github.com/boltdb/bolt" + bolt "go.etcd.io/bbolt" "github.com/hashicorp/raft" ) diff --git a/go.mod b/go.mod index 72cd55f..95cf546 100644 --- a/go.mod +++ b/go.mod @@ -6,4 +6,5 @@ require ( github.com/boltdb/bolt v1.3.1 github.com/hashicorp/go-msgpack v0.5.5 github.com/hashicorp/raft v1.1.0 - ) + go.etcd.io/bbolt v1.3.6 // indirect +) diff --git a/go.sum b/go.sum index ca41d0a..207d3af 100644 --- a/go.sum +++ b/go.sum @@ -39,5 +39,9 @@ github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXf github.com/stretchr/testify v1.3.0 h1:TivCn/peBQ7UY8ooIcPgZFpTNSz0Q2U6UrFlUfqbe0Q= github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI= github.com/tv42/httpunix v0.0.0-20150427012821-b75d8614f926/go.mod h1:9ESjWnEqriFuLhtthL60Sar/7RFoluCcXsuvEwTV5KM= +go.etcd.io/bbolt v1.3.6 h1:/ecaJf0sk1l4l6V4awd65v2C3ILy7MSj+s/x1ADCIMU= +go.etcd.io/bbolt v1.3.6/go.mod h1:qXsaaIqmgQH0T+OPdb99Bf+PKfBBQVAdyD6TY9G8XM4= golang.org/x/net v0.0.0-20181201002055-351d144fa1fc/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= -golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= \ No newline at end of file +golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sys v0.0.0-20200923182605-d9f96fdee20d h1:L/IKR6COd7ubZrs2oTnTi73IhgqJ71c9s80WsQnh0Es= +golang.org/x/sys v0.0.0-20200923182605-d9f96fdee20d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=