-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
33 changed files
with
206 additions
and
186 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,51 +1,50 @@ | ||
module github.com/capillariesio/capillaries | ||
|
||
go 1.22 | ||
go 1.23 | ||
|
||
require ( | ||
github.com/aws/aws-sdk-go-v2 v1.26.1 | ||
github.com/aws/aws-sdk-go-v2/config v1.27.11 | ||
github.com/aws/aws-sdk-go-v2/service/s3 v1.53.1 | ||
github.com/aws/aws-sdk-go-v2 v1.31.0 | ||
github.com/aws/aws-sdk-go-v2/config v1.27.36 | ||
github.com/aws/aws-sdk-go-v2/service/s3 v1.63.0 | ||
github.com/fraugster/parquet-go v0.12.0 | ||
github.com/gocql/gocql v1.6.0 | ||
github.com/hashicorp/golang-lru/v2 v2.0.7 | ||
github.com/pkg/sftp v1.13.6 | ||
github.com/rabbitmq/amqp091-go v1.9.0 | ||
github.com/sethvargo/go-envconfig v1.0.1 | ||
github.com/shopspring/decimal v1.3.1 | ||
github.com/stretchr/testify v1.8.4 | ||
github.com/rabbitmq/amqp091-go v1.10.0 | ||
github.com/sethvargo/go-envconfig v1.1.0 | ||
github.com/shopspring/decimal v1.4.0 | ||
github.com/stretchr/testify v1.9.0 | ||
go.uber.org/zap v1.27.0 | ||
golang.org/x/crypto v0.21.0 | ||
golang.org/x/text v0.14.0 | ||
golang.org/x/crypto v0.27.0 | ||
golang.org/x/text v0.18.0 | ||
gopkg.in/inf.v0 v0.9.1 | ||
) | ||
|
||
require github.com/jmespath/go-jmespath v0.4.0 // indirect | ||
require gopkg.in/yaml.v3 v3.0.1 // indirect | ||
|
||
require ( | ||
github.com/apache/thrift v0.19.0 // indirect | ||
github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.6.2 // indirect | ||
github.com/aws/aws-sdk-go-v2/credentials v1.17.11 // indirect | ||
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.16.1 // indirect | ||
github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.6.5 // indirect | ||
github.com/aws/aws-sdk-go-v2/credentials v1.17.34 // indirect | ||
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.16.14 // indirect | ||
github.com/aws/aws-sdk-go-v2/feature/s3/manager v1.16.15 | ||
github.com/aws/aws-sdk-go-v2/internal/configsources v1.3.5 // indirect | ||
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.6.5 // indirect | ||
github.com/aws/aws-sdk-go-v2/internal/ini v1.8.0 // indirect | ||
github.com/aws/aws-sdk-go-v2/internal/v4a v1.3.5 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.11.2 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.3.7 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.11.7 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.17.5 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/sso v1.20.5 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/ssooidc v1.23.4 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/sts v1.28.6 // indirect | ||
github.com/aws/smithy-go v1.20.2 // indirect | ||
github.com/aws/aws-sdk-go-v2/internal/configsources v1.3.18 // indirect | ||
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.6.18 // 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.18 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.11.5 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.3.20 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.11.20 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.17.18 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/sso v1.23.0 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/ssooidc v1.27.0 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/sts v1.31.0 // indirect | ||
github.com/aws/smithy-go v1.21.0 // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/golang/snappy v0.0.4 // indirect | ||
github.com/hailocab/go-hostpool v0.0.0-20160125115350-e80d13ce29ed // indirect | ||
github.com/kr/fs v0.1.0 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
go.uber.org/multierr v1.11.0 // indirect | ||
golang.org/x/sys v0.18.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
golang.org/x/sys v0.25.0 // indirect | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.