-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathgo.mod
25 lines (22 loc) · 772 Bytes
/
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
module github.com/pteich/elastic-query-export
go 1.22
require (
github.com/olivere/elastic/v7 v7.0.32
github.com/pteich/configstruct v1.6.0
golang.org/x/sync v0.10.0
gopkg.in/cheggaaa/pb.v2 v2.0.7
)
require (
github.com/josharian/intern v1.0.0 // indirect
github.com/mailru/easyjson v0.9.0 // indirect
github.com/mattn/go-colorable v0.1.14 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/pkg/errors v0.9.1 // indirect
golang.org/x/sys v0.29.0 // indirect
gopkg.in/VividCortex/ewma.v1 v1.1.1 // indirect
gopkg.in/fatih/color.v1 v1.7.0 // indirect
gopkg.in/mattn/go-colorable.v0 v0.1.0 // indirect
gopkg.in/mattn/go-isatty.v0 v0.0.4 // indirect
gopkg.in/mattn/go-runewidth.v0 v0.0.4 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)