| // Licensed to the Apache Software Foundation (ASF) under one |
| // or more contributor license agreements. See the NOTICE file |
| // distributed with this work for additional information |
| // regarding copyright ownership. The ASF licenses this file |
| // to you under the Apache License, Version 2.0 (the |
| // "License"); you may not use this file except in compliance |
| // with the License. You may obtain a copy of the License at |
| // |
| // http://www.apache.org/licenses/LICENSE-2.0 |
| // |
| // Unless required by applicable law or agreed to in writing, |
| // software distributed under the License is distributed on an |
| // "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| // KIND, either express or implied. See the License for the |
| // specific language governing permissions and limitations |
| // under the License. |
| |
| module github.com/apache/iceberg-go |
| |
| go 1.21 |
| |
| require ( |
| github.com/apache/arrow/go/v16 v16.1.0 |
| github.com/aws/aws-sdk-go-v2 v1.30.5 |
| github.com/aws/aws-sdk-go-v2/config v1.27.33 |
| github.com/aws/aws-sdk-go-v2/credentials v1.17.32 |
| github.com/aws/aws-sdk-go-v2/service/glue v1.95.0 |
| github.com/aws/aws-sdk-go-v2/service/s3 v1.61.2 |
| github.com/aws/smithy-go v1.20.4 |
| github.com/docopt/docopt-go v0.0.0-20180111231733-ee0de3bc6815 |
| github.com/google/uuid v1.6.0 |
| github.com/hamba/avro/v2 v2.23.0 |
| github.com/pterm/pterm v0.12.79 |
| github.com/stretchr/testify v1.9.0 |
| github.com/twmb/murmur3 v1.1.8 |
| github.com/wolfeidau/s3iofs v1.5.2 |
| golang.org/x/exp v0.0.0-20240222234643-814bf88cf225 |
| ) |
| |
| require ( |
| atomicgo.dev/cursor v0.2.0 // indirect |
| atomicgo.dev/keyboard v0.2.9 // indirect |
| atomicgo.dev/schedule v0.1.0 // indirect |
| github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.6.4 // indirect |
| github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.16.13 // indirect |
| github.com/aws/aws-sdk-go-v2/internal/configsources v1.3.17 // indirect |
| github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.6.17 // indirect |
| github.com/aws/aws-sdk-go-v2/internal/ini v1.8.1 // indirect |
| github.com/aws/aws-sdk-go-v2/internal/v4a v1.3.17 // indirect |
| github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.11.4 // indirect |
| github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.3.19 // indirect |
| github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.11.19 // indirect |
| github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.17.17 // indirect |
| github.com/aws/aws-sdk-go-v2/service/sso v1.22.7 // indirect |
| github.com/aws/aws-sdk-go-v2/service/ssooidc v1.26.7 // indirect |
| github.com/aws/aws-sdk-go-v2/service/sts v1.30.7 // indirect |
| github.com/containerd/console v1.0.3 // indirect |
| github.com/davecgh/go-spew v1.1.1 // indirect |
| github.com/goccy/go-json v0.10.2 // indirect |
| github.com/golang/snappy v0.0.4 // indirect |
| github.com/google/flatbuffers v24.3.25+incompatible // indirect |
| github.com/gookit/color v1.5.4 // indirect |
| github.com/json-iterator/go v1.1.12 // indirect |
| github.com/klauspost/compress v1.17.9 // indirect |
| github.com/lithammer/fuzzysearch v1.1.8 // indirect |
| github.com/mattn/go-runewidth v0.0.15 // indirect |
| github.com/mitchellh/mapstructure v1.5.0 // indirect |
| github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect |
| github.com/modern-go/reflect2 v1.0.2 // indirect |
| github.com/pmezard/go-difflib v1.0.0 // indirect |
| github.com/rivo/uniseg v0.4.4 // indirect |
| github.com/stretchr/objx v0.5.2 // indirect |
| github.com/xo/terminfo v0.0.0-20220910002029-abceb7e1c41e // indirect |
| golang.org/x/mod v0.19.0 // indirect |
| golang.org/x/net v0.27.0 // indirect |
| golang.org/x/sync v0.7.0 // indirect |
| golang.org/x/sys v0.22.0 // indirect |
| golang.org/x/term v0.22.0 // indirect |
| golang.org/x/text v0.16.0 // indirect |
| golang.org/x/tools v0.23.0 // indirect |
| golang.org/x/xerrors v0.0.0-20231012003039-104605ab7028 // indirect |
| gopkg.in/yaml.v3 v3.0.1 // indirect |
| ) |