-
Notifications
You must be signed in to change notification settings - Fork 10
/
go.mod
72 lines (66 loc) · 2.62 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
module github.com/lf-edge/eve-libs
go 1.20
require github.com/onsi/gomega v1.24.2
require (
github.com/golang-design/lockfree v0.0.1
github.com/google/gopacket v1.1.19
github.com/lithammer/shortuuid/v4 v4.0.0
github.com/mdlayher/netlink v1.7.1
github.com/packetcap/go-pcap v0.0.0-20230717110547-c34843f9206d
github.com/sirupsen/logrus v1.9.0
github.com/ti-mo/conntrack v0.4.0
golang.org/x/net v0.23.0
golang.org/x/sys v0.18.0
)
require (
github.com/changkun/lockfree v0.0.1 // indirect
github.com/google/go-cmp v0.5.9 // indirect
github.com/google/uuid v1.3.0 // indirect
github.com/josharian/native v1.0.0 // indirect
github.com/mdlayher/socket v0.4.0 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/ti-mo/netfilter v0.3.1 // indirect
golang.org/x/sync v0.1.0 // indirect
golang.org/x/text v0.14.0
gopkg.in/yaml.v3 v3.0.1 // indirect
)
require (
cloud.google.com/go/storage v1.28.1
github.com/Azure/azure-pipeline-go v0.2.3
github.com/Azure/azure-storage-blob-go v0.15.0
github.com/aws/aws-sdk-go v1.35.35
github.com/go-chi/chi/v5 v5.0.10
github.com/google/go-containerregistry v0.6.0
github.com/pkg/sftp v1.12.0
golang.org/x/crypto v0.21.0
golang.org/x/oauth2 v0.7.0
google.golang.org/api v0.114.0
)
require (
cloud.google.com/go v0.110.0 // indirect
cloud.google.com/go/compute v1.19.1 // indirect
cloud.google.com/go/compute/metadata v0.2.3 // indirect
cloud.google.com/go/iam v0.13.0 // indirect
github.com/containerd/stargz-snapshotter/estargz v0.7.0 // indirect
github.com/docker/cli v20.10.9+incompatible // indirect
github.com/docker/distribution v2.8.2+incompatible // indirect
github.com/docker/docker v25.0.6+incompatible // indirect
github.com/docker/docker-credential-helpers v0.6.3 // indirect
github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e // indirect
github.com/golang/protobuf v1.5.3 // indirect
github.com/golang/snappy v0.0.3 // indirect
github.com/googleapis/enterprise-certificate-proxy v0.2.3 // indirect
github.com/googleapis/gax-go/v2 v2.7.1 // indirect
github.com/jmespath/go-jmespath v0.4.0 // indirect
github.com/klauspost/compress v1.13.0 // indirect
github.com/kr/fs v0.1.0 // indirect
github.com/mattn/go-ieproxy v0.0.1 // indirect
github.com/opencontainers/go-digest v1.0.0 // indirect
github.com/opencontainers/image-spec v1.0.2 // indirect
go.opencensus.io v0.24.0 // indirect
golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect
google.golang.org/appengine v1.6.7 // indirect
google.golang.org/genproto v0.0.0-20230410155749-daa745c078e1 // indirect
google.golang.org/grpc v1.56.3 // indirect
google.golang.org/protobuf v1.33.0 // indirect
)