rtnetlink/go.mod
Ben Kochie 98722e180a
Update minimum Go version (#201)
Go mod version (1.18) is older than depencies (1.20)
- github.com/cilium/ebpf
- github.com/mdlayher/socket

Update `go fmt` for latest Go release.

Signed-off-by: SuperQ <superq@gmail.com>
Co-authored-by: Jeroen Simonetti <jsimonetti@users.noreply.github.com>
2023-11-27 10:51:30 +01:00

19 lines
467 B
Modula-2

module github.com/jsimonetti/rtnetlink
go 1.20
require (
github.com/cilium/ebpf v0.12.3
github.com/google/go-cmp v0.6.0
github.com/mdlayher/netlink v1.7.2
golang.org/x/sys v0.14.1-0.20231108175955-e4099bfacb8c
)
require (
github.com/josharian/native v1.1.0 // indirect
github.com/mdlayher/socket v0.4.1 // indirect
golang.org/x/exp v0.0.0-20230224173230-c95f2b4c22f2 // indirect
golang.org/x/net v0.17.0 // indirect
golang.org/x/sync v0.1.0 // indirect
)