forked from lf-edge/eve
-
Notifications
You must be signed in to change notification settings - Fork 1
/
go.mod
44 lines (40 loc) · 1.89 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
module github.com/lf-edge/eve/pkg/wwan/mmagent
go 1.22
require (
github.com/godbus/dbus/v5 v5.1.0
github.com/lf-edge/eve/pkg/pillar v0.0.0-20240808182004-78201574b04a
github.com/miekg/dns v1.1.55
github.com/sirupsen/logrus v1.9.3
github.com/tatsushid/go-fastping v0.0.0-20160109021039-d7bb493dee3e
github.com/vishvananda/netlink v1.2.1-beta.2
golang.org/x/sys v0.18.0
)
require (
github.com/eriknordmark/ipinfo v0.0.0-20230728132417-2d8f4da903d7 // indirect
github.com/fsnotify/fsnotify v1.6.0 // indirect
github.com/gabriel-vasile/mimetype v1.4.2 // indirect
github.com/go-playground/locales v0.14.1 // indirect
github.com/go-playground/universal-translator v0.18.1 // indirect
github.com/go-playground/validator/v10 v10.15.5 // indirect
github.com/google/go-cmp v0.6.0 // indirect
github.com/google/go-containerregistry v0.14.0 // indirect
github.com/google/go-tpm v0.9.1 // indirect
github.com/kr/pretty v0.3.1 // indirect
github.com/leodido/go-urn v1.2.4 // indirect
github.com/lf-edge/eve-api/go v0.0.0-20240829123634-7c8ebda876ff // indirect
github.com/lf-edge/eve/pkg/kube/cnirpc v0.0.0-20240315102754-0f6d1f182e0d // indirect
github.com/satori/go.uuid v1.2.1-0.20180404165556-75cca531ea76 // indirect
github.com/vishvananda/netns v0.0.0-20210104183010-2eb08e3e575f // indirect
golang.org/x/crypto v0.21.0 // indirect
golang.org/x/mod v0.15.0 // indirect
golang.org/x/net v0.23.0 // indirect
golang.org/x/text v0.14.0 // indirect
golang.org/x/tools v0.18.0 // indirect
google.golang.org/protobuf v1.33.0 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
)
// This is only a temporary replace directive used until this commit is merged into master.
// Without replace we would have to make changes in pillar and wwan separately.
// However, between these separate PRs, wwan would be broken due to incompatibility
// between pillar and mmagent.
replace github.com/lf-edge/eve/pkg/pillar => ../../pillar