-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgo.mod
More file actions
36 lines (33 loc) · 1.37 KB
/
go.mod
File metadata and controls
36 lines (33 loc) · 1.37 KB
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
32
33
34
35
36
module github.com/spangenberg/arrowflight-server-reference-implementation
go 1.22.0
require (
github.com/apache/arrow/go/v15 v15.0.0
github.com/cloudquery/plugin-pb-go v1.17.1
github.com/cloudquery/plugin-sdk/v4 v4.29.1
github.com/google/uuid v1.6.0
github.com/nursik/go-expire-map v1.1.0
github.com/rs/zerolog v1.32.0
google.golang.org/grpc v1.61.0
google.golang.org/protobuf v1.32.0
)
require (
github.com/goccy/go-json v0.10.2 // indirect
github.com/golang/protobuf v1.5.3 // indirect
github.com/google/flatbuffers v23.5.26+incompatible // indirect
github.com/klauspost/compress v1.17.5 // indirect
github.com/klauspost/cpuid/v2 v2.2.6 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/nursik/go-ordered-set v0.0.0-20190626022851-0e8872c36517 // indirect
github.com/pierrec/lz4/v4 v4.1.21 // indirect
github.com/thoas/go-funk v0.9.3 // indirect
github.com/zeebo/xxh3 v1.0.2 // indirect
golang.org/x/exp v0.0.0-20240119083558-1b970713d09a // indirect
golang.org/x/mod v0.14.0 // indirect
golang.org/x/net v0.20.0 // indirect
golang.org/x/sys v0.16.0 // indirect
golang.org/x/text v0.14.0 // indirect
golang.org/x/tools v0.17.0 // indirect
golang.org/x/xerrors v0.0.0-20231012003039-104605ab7028 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20240125205218-1f4bbc51befe // indirect
)