...
1// Licensed to the Apache Software Foundation (ASF) under one
2// or more contributor license agreements. See the NOTICE file
3// distributed with this work for additional information
4// regarding copyright ownership. The ASF licenses this file
5// to you under the Apache License, Version 2.0 (the
6// "License"); you may not use this file except in compliance
7// with the License. You may obtain a copy of the License at
8//
9// http://www.apache.org/licenses/LICENSE-2.0
10//
11// Unless required by applicable law or agreed to in writing, software
12// distributed under the License is distributed on an "AS IS" BASIS,
13// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14// See the License for the specific language governing permissions and
15// limitations under the License.
16
17module github.com/apache/arrow/go/v15
18
19go 1.20
20
21require (
22 github.com/JohnCGriffin/overflow v0.0.0-20211019200055-46fa312c352c
23 github.com/andybalholm/brotli v1.0.5
24 github.com/apache/thrift v0.17.0
25 github.com/docopt/docopt-go v0.0.0-20180111231733-ee0de3bc6815
26 github.com/goccy/go-json v0.10.2
27 github.com/golang/snappy v0.0.4
28 github.com/google/flatbuffers v23.5.26+incompatible
29 github.com/klauspost/asmfmt v1.3.2
30 github.com/klauspost/compress v1.16.7
31 github.com/klauspost/cpuid/v2 v2.2.5
32 github.com/minio/asm2plan9s v0.0.0-20200509001527-cdd76441f9d8
33 github.com/minio/c2goasm v0.0.0-20190812172519-36a3d3bbc4f3
34 github.com/pierrec/lz4/v4 v4.1.18
35 github.com/stretchr/testify v1.8.4
36 github.com/zeebo/xxh3 v1.0.2
37 golang.org/x/exp v0.0.0-20231006140011-7918f672742d
38 golang.org/x/sync v0.4.0
39 golang.org/x/sys v0.13.0
40 golang.org/x/tools v0.14.0
41 golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2
42 gonum.org/v1/gonum v0.12.0
43 google.golang.org/grpc v1.58.3
44 google.golang.org/protobuf v1.31.0
45 modernc.org/sqlite v1.21.2
46)
47
48require (
49 github.com/google/uuid v1.3.1
50 github.com/hamba/avro/v2 v2.17.2
51 github.com/substrait-io/substrait-go v0.4.2
52 github.com/tidwall/sjson v1.2.5
53)
54
55require (
56 github.com/alecthomas/participle/v2 v2.1.0 // indirect
57 github.com/davecgh/go-spew v1.1.1 // indirect
58 github.com/dustin/go-humanize v1.0.1 // indirect
59 github.com/fatih/color v1.15.0 // indirect
60 github.com/goccy/go-yaml v1.11.0 // indirect
61 github.com/golang/protobuf v1.5.3 // indirect
62 github.com/json-iterator/go v1.1.12 // indirect
63 github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 // indirect
64 github.com/kr/text v0.2.0 // indirect
65 github.com/mattn/go-colorable v0.1.13 // indirect
66 github.com/mattn/go-isatty v0.0.19 // indirect
67 github.com/mitchellh/mapstructure v1.5.0 // indirect
68 github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
69 github.com/modern-go/reflect2 v1.0.2 // indirect
70 github.com/pmezard/go-difflib v1.0.0 // indirect
71 github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // indirect
72 github.com/rogpeppe/go-internal v1.9.0 // indirect
73 github.com/stretchr/objx v0.5.0 // indirect
74 github.com/tidwall/gjson v1.14.2 // indirect
75 github.com/tidwall/match v1.1.1 // indirect
76 github.com/tidwall/pretty v1.2.0 // indirect
77 golang.org/x/mod v0.13.0 // indirect
78 golang.org/x/net v0.17.0 // indirect
79 golang.org/x/text v0.13.0 // indirect
80 google.golang.org/genproto/googleapis/rpc v0.0.0-20231002182017-d307bd883b97 // indirect
81 gopkg.in/yaml.v3 v3.0.1 // indirect
82 lukechampine.com/uint128 v1.3.0 // indirect
83 modernc.org/cc/v3 v3.40.0 // indirect
84 modernc.org/ccgo/v3 v3.16.13 // indirect
85 modernc.org/libc v1.22.4 // indirect
86 modernc.org/mathutil v1.5.0 // indirect
87 modernc.org/memory v1.5.0 // indirect
88 modernc.org/opt v0.1.3 // indirect
89 modernc.org/strutil v1.1.3 // indirect
90 modernc.org/token v1.1.0 // indirect
91)
View as plain text