mirror of
https://github.com/jsimonetti/rtnetlink.git
synced 2026-05-05 02:46:15 +02:00
This is the first release of package rtnetlink that only supports Go 1.18+. Users on older versions of Go must use v1.2.4 [Improvement]: drop support for older versions to be inline with upstream go support Signed-off-by: Jeroen Simonetti <jeroen@simonetti.nl>
18 lines
369 B
Modula-2
18 lines
369 B
Modula-2
module github.com/jsimonetti/rtnetlink
|
|
|
|
go 1.18
|
|
|
|
require (
|
|
github.com/cilium/ebpf v0.9.3
|
|
github.com/google/go-cmp v0.5.9
|
|
github.com/mdlayher/netlink v1.7.0
|
|
golang.org/x/sys v0.2.0
|
|
)
|
|
|
|
require (
|
|
github.com/josharian/native v1.0.0 // indirect
|
|
github.com/mdlayher/socket v0.4.0 // indirect
|
|
golang.org/x/net v0.2.0 // indirect
|
|
golang.org/x/sync v0.1.0 // indirect
|
|
)
|