-
Notifications
You must be signed in to change notification settings - Fork 3
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
9326e5d
commit 0ad5254
Showing
5 changed files
with
145 additions
and
65 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,34 +1,31 @@ | ||
module github.com/in4it/wireguard-server | ||
|
||
go 1.22.2 | ||
go 1.23.0 | ||
|
||
require ( | ||
github.com/go-jose/go-jose/v4 v4.0.2 | ||
github.com/golang-jwt/jwt/v5 v5.2.1 | ||
github.com/google/uuid v1.6.0 | ||
github.com/gopacket/gopacket v1.3.0 | ||
github.com/mdlayher/genetlink v1.3.2 | ||
github.com/mdlayher/netlink v1.7.2 | ||
github.com/packetcap/go-pcap v0.0.0-20240528124601-8c87ecf5dbc5 | ||
github.com/russellhaering/gosaml2 v0.9.1 | ||
github.com/russellhaering/goxmldsig v1.4.0 | ||
golang.org/x/crypto v0.25.0 | ||
golang.org/x/sys v0.22.0 | ||
golang.org/x/term v0.22.0 | ||
golang.org/x/crypto v0.26.0 | ||
golang.org/x/sys v0.24.0 | ||
golang.org/x/term v0.23.0 | ||
) | ||
|
||
require ( | ||
github.com/beevik/etree v1.4.0 // indirect | ||
github.com/google/go-cmp v0.6.0 // indirect | ||
github.com/google/gopacket v1.1.19 // indirect | ||
github.com/gopacket/gopacket v1.2.0 // indirect | ||
github.com/jonboulle/clockwork v0.4.0 // indirect | ||
github.com/josharian/native v1.1.0 // indirect | ||
github.com/mattermost/xml-roundtrip-validator v0.1.0 // indirect | ||
github.com/mdlayher/socket v0.5.1 // indirect | ||
github.com/packetcap/go-pcap v0.0.0-20240528124601-8c87ecf5dbc5 // indirect | ||
github.com/sirupsen/logrus v1.9.3 // indirect | ||
github.com/vmihailenco/msgpack/v5 v5.4.1 // indirect | ||
github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect | ||
golang.org/x/net v0.27.0 // indirect | ||
golang.org/x/sync v0.7.0 // indirect | ||
golang.org/x/text v0.16.0 // indirect | ||
golang.org/x/net v0.28.0 // indirect | ||
golang.org/x/sync v0.8.0 // indirect | ||
golang.org/x/text v0.17.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