Skip to content

Commit

Permalink
Update Go mod for Go 1.21 support
Browse files Browse the repository at this point in the history
This change updates go.mod for Go 1.21 support. This is needed to
consume the github.com/containernetworking/plugins v1.4.1 dependency
updates.

Signed-off-by: Austin Vazquez <macedonv@amazon.com>
  • Loading branch information
austinvazquez committed Mar 21, 2024
1 parent b8b3aa5 commit ca94d9d
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2,562 deletions.
11 changes: 9 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,13 +1,20 @@
module github.com/awslabs/tc-redirect-tap

go 1.11
go 1.21

require (
github.com/containernetworking/cni v1.1.2
github.com/containernetworking/plugins v1.4.0
github.com/hashicorp/go-multierror v1.1.1
github.com/onsi/ginkgo v1.16.5 // indirect
github.com/stretchr/testify v1.9.0
github.com/vishvananda/netlink v1.2.1-beta.2
golang.org/x/sys v0.18.0
)

require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/hashicorp/errwrap v1.0.0 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/vishvananda/netns v0.0.4 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
Loading

0 comments on commit ca94d9d

Please sign in to comment.