-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
31 lines (28 loc) · 1.07 KB
/
go.mod
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
module github.com/lezhnev74/inverted_index
go 1.21.0
require (
github.com/RoaringBitmap/roaring v1.6.0
github.com/alexeyco/simpletable v1.0.0
github.com/blevesearch/vellum v1.0.10
github.com/golang/snappy v0.0.4
github.com/lezhnev74/go-iterators v0.0.0-20231027122649-f1eb87c962a7
github.com/ronanh/intcomp v1.1.0
github.com/stretchr/testify v1.8.4
github.com/urfave/cli/v2 v2.25.7
golang.org/x/exp v0.0.0-20231110203233-9a3e6036ecaa
)
require (
github.com/bits-and-blooms/bitset v1.11.0 // indirect
github.com/blevesearch/mmap-go v1.0.4 // indirect
github.com/cpuguy83/go-md2man/v2 v2.0.3 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/mattn/go-runewidth v0.0.15 // indirect
github.com/mschoch/smat v0.2.0 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/rivo/uniseg v0.4.4 // indirect
github.com/russross/blackfriday/v2 v2.1.0 // indirect
github.com/xrash/smetrics v0.0.0-20201216005158-039620a65673 // indirect
golang.org/x/sync v0.5.0 // indirect
golang.org/x/sys v0.14.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)