-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
27c31fd
commit 61150b2
Showing
3 changed files
with
91 additions
and
7 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,56 @@ | ||
module github.com/asecurityteam/runsqs-compressor | ||
|
||
go 1.13 | ||
go 1.22 | ||
|
||
toolchain go1.24.0 | ||
|
||
require ( | ||
github.com/asecurityteam/runsqs/v2 v2.5.0 | ||
github.com/aws/aws-sdk-go v1.43.43 | ||
github.com/asecurityteam/runsqs/v2 v2.7.0 | ||
github.com/asecurityteam/runsqs/v3 v3.0.3 | ||
github.com/aws/aws-sdk-go v1.55.6 | ||
github.com/golang/mock v1.6.0 | ||
github.com/rs/zerolog v1.26.1 // indirect | ||
github.com/stretchr/testify v1.7.0 | ||
golang.org/x/net v0.0.0-20220420153159-1850ba15e1be // indirect | ||
github.com/stretchr/testify v1.10.0 | ||
) | ||
|
||
require ( | ||
github.com/asecurityteam/logevent v1.6.1 // indirect | ||
github.com/asecurityteam/logevent/v2 v2.0.1 // indirect | ||
github.com/coreos/go-systemd/v22 v22.5.0 // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/fatih/structs v1.1.0 // indirect | ||
github.com/godbus/dbus/v5 v5.0.4 // indirect | ||
github.com/google/go-cmp v0.6.0 // indirect | ||
github.com/google/uuid v1.6.0 // indirect | ||
github.com/jmespath/go-jmespath v0.4.0 // indirect | ||
github.com/jmespath/go-jmespath/internal/testify v1.5.1 // indirect | ||
github.com/justinas/alice v1.2.0 // indirect | ||
github.com/kr/pretty v0.1.0 // indirect | ||
github.com/kr/pty v1.1.1 // indirect | ||
github.com/kr/text v0.1.0 // indirect | ||
github.com/mattn/go-colorable v0.1.13 // indirect | ||
github.com/mattn/go-isatty v0.0.20 // indirect | ||
github.com/pkg/errors v0.9.1 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/rs/cors v1.11.0 // indirect | ||
github.com/rs/xhandler v0.0.0-20170707052532-1eb70cf1520d // indirect | ||
github.com/rs/xid v1.5.0 // indirect | ||
github.com/rs/xlog v0.0.0-20171227185259-131980fab91b // indirect | ||
github.com/rs/xstats v0.0.0-20170813190920-c67367528e16 // indirect | ||
github.com/rs/zerolog v1.33.0 // indirect | ||
github.com/stretchr/objx v0.5.2 // indirect | ||
github.com/yuin/goldmark v1.4.13 // indirect | ||
golang.org/x/crypto v0.26.0 // indirect | ||
golang.org/x/mod v0.17.0 // indirect | ||
golang.org/x/net v0.28.0 // indirect | ||
golang.org/x/sync v0.8.0 // indirect | ||
golang.org/x/sys v0.24.0 // indirect | ||
golang.org/x/telemetry v0.0.0-20240228155512-f48c80bd79b2 // indirect | ||
golang.org/x/term v0.23.0 // indirect | ||
golang.org/x/text v0.17.0 // indirect | ||
golang.org/x/tools v0.21.1-0.20240508182429-e35e4ccd0d2d // indirect | ||
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect | ||
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect | ||
gopkg.in/yaml.v2 v2.2.8 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
gotest.tools v2.2.0+incompatible // 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