-
Notifications
You must be signed in to change notification settings - Fork 6
/
go.mod
45 lines (40 loc) · 1.48 KB
/
go.mod
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
// SPDX-FileCopyrightText: 2023 Steffen Vogel <[email protected]>
// SPDX-License-Identifier: Apache-2.0
module cunicu.li/gont/v2
go 1.23.0
require (
github.com/davecgh/go-spew v1.1.1
github.com/fxamacker/cbor/v2 v2.7.0
github.com/go-delve/delve v1.21.0
github.com/go-ping/ping v1.1.0
github.com/google/nftables v0.2.0
github.com/gopacket/gopacket v1.3.0
github.com/vishvananda/netlink v1.3.0
github.com/vishvananda/netns v0.0.4
go.uber.org/zap v1.27.0
golang.org/x/exp v0.0.0-20241108190413-2d47ceb2692f
golang.org/x/net v0.30.0
golang.org/x/sys v0.26.0
kernel.org/pub/linux/libs/security/libcap/cap v1.2.71
)
require github.com/stretchr/testify v1.9.0 // test-only
require (
github.com/cilium/ebpf v0.12.3 // indirect
github.com/google/go-cmp v0.6.0 // indirect
github.com/google/go-dap v0.9.1 // indirect
github.com/google/uuid v1.3.0 // indirect
github.com/hashicorp/golang-lru v0.5.4 // indirect
github.com/josharian/native v1.1.0 // indirect
github.com/mattn/go-isatty v0.0.19 // indirect
github.com/mdlayher/netlink v1.7.2 // indirect
github.com/mdlayher/socket v0.5.0 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/sirupsen/logrus v1.9.2 // indirect
github.com/x448/float16 v0.8.4 // indirect
go.uber.org/multierr v1.11.0 // indirect
golang.org/x/arch v0.3.0 // indirect
golang.org/x/sync v0.9.0 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
kernel.org/pub/linux/libs/security/libcap/psx v1.2.71 // indirect
)