Update go modules and bump minimum Go version to 1.23 (#11)

* Update go modules
* Update minimal Go version to 1.23
* Update README.md with tools that support pcap-over-ip
This commit is contained in:
Yun Zheng Hu
2025-05-16 16:53:32 +02:00
committed by GitHub
parent e6be4ec35f
commit fe3c0b2cdf
4 changed files with 18 additions and 14 deletions

10
go.mod
View File

@@ -1,16 +1,16 @@
module github.com/fox-it/pcap-broker
go 1.20
go 1.23.0
require (
github.com/google/gopacket v1.1.19
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510
github.com/rs/zerolog v1.33.0
github.com/rs/zerolog v1.34.0
)
require (
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-colorable v0.1.14 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
golang.org/x/net v0.33.0 // indirect
golang.org/x/sys v0.28.0 // indirect
golang.org/x/net v0.40.0 // indirect
golang.org/x/sys v0.33.0 // indirect
)