forked from elastic/go-elasticsearch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
24 lines (19 loc) · 746 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
module github.com/elastic/go-elasticsearch/v8/_examples/fasthttp
go 1.21
toolchain go1.21.8
replace github.com/elastic/go-elasticsearch/v8 => ../..
require (
github.com/elastic/go-elasticsearch/v8 v8.0.0-20210817150010-57d659deaca7
github.com/valyala/fasthttp v1.34.0
)
require (
github.com/andybalholm/brotli v1.0.4 // indirect
github.com/elastic/elastic-transport-go/v8 v8.5.0 // indirect
github.com/go-logr/logr v1.4.1 // indirect
github.com/go-logr/stdr v1.2.2 // indirect
github.com/klauspost/compress v1.15.0 // indirect
github.com/valyala/bytebufferpool v1.0.0 // indirect
go.opentelemetry.io/otel v1.24.0 // indirect
go.opentelemetry.io/otel/metric v1.24.0 // indirect
go.opentelemetry.io/otel/trace v1.24.0 // indirect
)