Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update dependencies #23

Merged
merged 1 commit into from
May 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ clean:
go clean
reinstall: uninstall install
update:
go get -u github.com/louisroyer/go-pfcp-networking@master
go get -u github.com/nextmn/go-pfcp-networking@master
go mod tidy
install:
$(INSTALL) upf $(DESTDIR)$(bindir)/upf
Expand Down
25 changes: 19 additions & 6 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,15 +1,28 @@
module github.com/nextmn/upf

go 1.15
go 1.21

toolchain go1.21.8

require (
github.com/cpuguy83/go-md2man/v2 v2.0.3 // indirect
github.com/google/gopacket v1.1.19
github.com/louisroyer/go-pfcp-networking v0.0.24
github.com/nextmn/go-pfcp-networking v0.0.27
github.com/songgao/water v0.0.0-20200317203138-2b4b6d7c09d8
github.com/urfave/cli/v2 v2.27.1
github.com/urfave/cli/v2 v2.27.2
github.com/wmnsk/go-gtp v0.8.10
github.com/wmnsk/go-pfcp v0.0.23
github.com/xrash/smetrics v0.0.0-20231213231151-1d8dd44e695e // indirect
github.com/wmnsk/go-pfcp v0.0.24
gopkg.in/yaml.v3 v3.0.1
)

require (
github.com/cpuguy83/go-md2man/v2 v2.0.4 // indirect
github.com/kr/pretty v0.3.1 // indirect
github.com/rogpeppe/go-internal v1.10.0 // indirect
github.com/russross/blackfriday/v2 v2.1.0 // indirect
github.com/vishvananda/netlink v1.1.0 // indirect
github.com/vishvananda/netns v0.0.4 // indirect
github.com/xrash/smetrics v0.0.0-20240312152122-5f08fbb34913 // indirect
golang.org/x/net v0.25.0 // indirect
golang.org/x/sys v0.20.0 // indirect
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
)
Loading