File tree Expand file tree Collapse file tree 10 files changed +14
-10
lines changed
Expand file tree Collapse file tree 10 files changed +14
-10
lines changed Original file line number Diff line number Diff line change @@ -64,7 +64,7 @@ qa: fmtcheck test vet lint
6464# Get the dependencies
6565deps :
6666 GOPATH=$(GOPATH ) go get github.com/stretchr/testify
67- GOPATH=$(GOPATH ) go get github.com/willf /bitset
67+ GOPATH=$(GOPATH ) go get github.com/bits-and-blooms /bitset
6868 GOPATH=$(GOPATH ) go get github.com/golang/lint/golint
6969 GOPATH=$(GOPATH ) go get github.com/mschoch/smat
7070 GOPATH=$(GOPATH ) go get github.com/dvyukov/go-fuzz/go-fuzz
Original file line number Diff line number Diff line change @@ -158,7 +158,7 @@ http://arxiv.org/abs/1402.6407 This paper used data from http://lemire.me/data/r
158158Dependencies are fetched automatically by giving the ` -t ` flag to ` go get ` .
159159
160160they include
161- - github.com/willf /bitset
161+ - github.com/bits-and-blooms /bitset
162162 - github.com/mschoch/smat
163163 - github.com/glycerine/go-unsnap-stream
164164 - github.com/philhofer/fwd
Original file line number Diff line number Diff line change @@ -3,18 +3,18 @@ module github.com/RoaringBitmap/roaring
33go 1.14
44
55require (
6+ github.com/bits-and-blooms/bitset v1.2.0
67 github.com/dvyukov/go-fuzz v0.0.0-20210429054444-fca39067bc72 // indirect
78 github.com/elazarl/go-bindata-assetfs v1.0.1 // indirect
89 github.com/glycerine/go-unsnap-stream v0.0.0-20181221182339-f9677308dec2
910 github.com/glycerine/goconvey v0.0.0-20190410193231-58a59202ab31 // indirect
1011 github.com/golang/snappy v0.0.1 // indirect
1112 github.com/gopherjs/gopherjs v0.0.0-20190910122728-9d188e94fb99 // indirect
1213 github.com/jtolds/gls v4.20.0+incompatible // indirect
13- github.com/mschoch/smat v0.0.0-20160514031455-90eadee771ae
14+ github.com/mschoch/smat v0.2.0
1415 github.com/philhofer/fwd v1.0.0 // indirect
1516 github.com/stephens2424/writerset v1.0.2 // indirect
1617 github.com/stretchr/testify v1.4.0
17- github.com/willf/bitset v1.1.10
1818 golang.org/x/lint v0.0.0-20200302205851-738671d3881b // indirect
1919 golang.org/x/tools v0.0.0-20200928182047-19e03678916f // indirect
2020)
Original file line number Diff line number Diff line change 11github.com/Julusian/godocdown v0.0.0-20170816220326-6d19f8ff2df8 /go.mod h1:INZr5t32rG59/5xeltqoCJoNY7e5x/3xoY9WSWVWg74 =
2+ github.com/bits-and-blooms/bitset v1.2.0 h1:Kn4yilvwNtMACtf1eYDlG8H77R07mZSPbMjLyS07ChA =
3+ github.com/bits-and-blooms/bitset v1.2.0 /go.mod h1:gIdJ4wp64HaoK2YrL1Q5/N7Y16edYb8uY+O0FJTyyDA =
24github.com/davecgh/go-spew v1.1.0 h1:ZDRjVQ15GmhC3fiQ8ni8+OwkZQO4DARzQgrnXU1Liz8 =
35github.com/davecgh/go-spew v1.1.0 /go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38 =
46github.com/dvyukov/go-fuzz v0.0.0-20210429054444-fca39067bc72 h1:XiR1YwcWcRFzxjAhWK29HQL4nocj0QWJjpeRi/YASV0 =
@@ -17,6 +19,8 @@ github.com/jtolds/gls v4.20.0+incompatible h1:xdiiI2gbIgH/gLH7ADydsJ1uDOEzR8yvV7
1719github.com/jtolds/gls v4.20.0+incompatible /go.mod h1:QJZ7F/aHp+rZTRtaJ1ow/lLfFfVYBRgL+9YlvaHOwJU =
1820github.com/mschoch/smat v0.0.0-20160514031455-90eadee771ae h1:VeRdUYdCw49yizlSbMEn2SZ+gT+3IUKx8BqxyQdz+BY =
1921github.com/mschoch/smat v0.0.0-20160514031455-90eadee771ae /go.mod h1:qAyveg+e4CE+eKJXWVjKXM4ck2QobLqTDytGJbLLhJg =
22+ github.com/mschoch/smat v0.2.0 h1:8imxQsjDm8yFEAVBe7azKmKSgzSkZXDuKkSq9374khM =
23+ github.com/mschoch/smat v0.2.0 /go.mod h1:kc9mz7DoBKqDyiRL7VZN8KvXQMWeTaVnttLRXOlotKw =
2024github.com/philhofer/fwd v1.0.0 h1:UbZqGr5Y38ApvM/V/jEljVxwocdweyH+vmYvRPBnbqQ =
2125github.com/philhofer/fwd v1.0.0 /go.mod h1:gk3iGcWd9+svBvR0sR+KPcfE+RNWozjowpeBVG3ZVNU =
2226github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM =
Original file line number Diff line number Diff line change @@ -64,7 +64,7 @@ qa: fmtcheck test vet lint
6464# Get the dependencies
6565deps :
6666 GOPATH=$(GOPATH ) go get github.com/stretchr/testify
67- GOPATH=$(GOPATH ) go get github.com/willf /bitset
67+ GOPATH=$(GOPATH ) go get github.com/bits-and-blooms /bitset
6868 GOPATH=$(GOPATH ) go get github.com/golang/lint/golint
6969 GOPATH=$(GOPATH ) go get github.com/mschoch/smat
7070 GOPATH=$(GOPATH ) go get github.com/dvyukov/go-fuzz/go-fuzz
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ import (
1313
1414 "github.com/RoaringBitmap/roaring"
1515 "github.com/stretchr/testify/assert"
16- "github.com/willf /bitset"
16+ "github.com/bits-and-blooms /bitset"
1717)
1818
1919func TestRoaringIntervalCheck (t * testing.T ) {
Original file line number Diff line number Diff line change 88 "testing"
99
1010 "github.com/stretchr/testify/assert"
11- "github.com/willf /bitset"
11+ "github.com/bits-and-blooms /bitset"
1212)
1313
1414func TestCloneOfCOW (t * testing.T ) {
Original file line number Diff line number Diff line change 99 "testing"
1010
1111 "github.com/stretchr/testify/assert"
12- "github.com/willf /bitset"
12+ "github.com/bits-and-blooms /bitset"
1313)
1414
1515func TestReverseIteratorCount (t * testing.T ) {
Original file line number Diff line number Diff line change 88 "testing"
99
1010 "github.com/stretchr/testify/assert"
11- "github.com/willf /bitset"
11+ "github.com/bits-and-blooms /bitset"
1212)
1313
1414func TestCloneOfCOW (t * testing.T ) {
Original file line number Diff line number Diff line change @@ -63,7 +63,7 @@ import (
6363 "sort"
6464
6565 "github.com/mschoch/smat"
66- "github.com/willf /bitset"
66+ "github.com/bits-and-blooms /bitset"
6767)
6868
6969// fuzz test using state machine driven by byte stream.
You can’t perform that action at this time.
0 commit comments