-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathgo.mod
31 lines (27 loc) · 1017 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
26
27
28
29
30
31
module github.com/apache/horaedb-client-go
go 1.17
require (
github.com/apache/arrow/go/arrow v0.0.0-20211112161151-bc219186db40
github.com/apache/incubator-horaedb-proto/golang v0.0.0-20240220091914-b5a6581e80d1
github.com/hashicorp/golang-lru v1.0.2
github.com/pkg/errors v0.9.1
github.com/stretchr/testify v1.8.1
google.golang.org/grpc v1.47.0
)
require (
github.com/google/flatbuffers v2.0.0+incompatible // indirect
github.com/klauspost/compress v1.15.14
github.com/pierrec/lz4/v4 v4.1.8 // indirect
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
)
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/golang/protobuf v1.5.2 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
golang.org/x/net v0.5.0 // indirect
golang.org/x/sys v0.4.0 // indirect
golang.org/x/text v0.6.0 // indirect
google.golang.org/genproto v0.0.0-20210630183607-d20f26d13c79 // indirect
google.golang.org/protobuf v1.28.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)