1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
module github.com/mdlayher/netlink/internal/integration
go 1.23.0
require (
github.com/google/go-cmp v0.7.0
github.com/jsimonetti/rtnetlink v1.4.2
github.com/mdlayher/ethtool v0.4.0
golang.org/x/net v0.43.0
golang.org/x/sys v0.35.0
)
require (
github.com/josharian/native v1.1.0 // indirect
github.com/mdlayher/genetlink v1.3.2 // indirect
github.com/mdlayher/socket v0.5.1 // indirect
golang.org/x/sync v0.3.0 // indirect
)
// We require a recent release, but in reality the integration tests should
// always use the netlink module at the root of the repository.
require github.com/mdlayher/netlink v1.7.2
replace github.com/mdlayher/netlink => ../../
|