-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathgo.mod
More file actions
64 lines (60 loc) · 2.21 KB
/
go.mod
File metadata and controls
64 lines (60 loc) · 2.21 KB
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
module github.com/xmidt-org/xmidt-agent
go 1.24.2
require (
github.com/alecthomas/kong v1.14.0
github.com/coder/websocket v1.8.14
github.com/foxcpp/go-mockdns v1.2.0
github.com/google/uuid v1.6.0
github.com/goschtalt/goschtalt v0.28.1
github.com/goschtalt/properties-decoder v0.1.0
github.com/goschtalt/yaml-decoder v0.0.1
github.com/goschtalt/yaml-encoder v0.0.4
github.com/lestrrat-go/jwx/v2 v2.1.6
github.com/stretchr/testify v1.11.1
github.com/tinylib/msgp v1.6.3
github.com/xmidt-org/arrange v0.5.1
github.com/xmidt-org/eventor v1.0.35
github.com/xmidt-org/retry v0.0.4
github.com/xmidt-org/sallust v0.2.4
github.com/xmidt-org/wrp-go/v5 v5.4.0
go.nanomsg.org/mangos/v3 v3.4.2
go.uber.org/fx v1.24.0
go.uber.org/zap v1.27.1
gopkg.in/dealancer/validate.v2 v2.1.0
)
require (
github.com/google/go-cmp v0.7.0 // indirect
github.com/quic-go/qpack v0.6.0 // indirect
golang.org/x/text v0.28.0 // indirect
)
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.4.0 // indirect
github.com/goccy/go-json v0.10.5 // indirect
github.com/goschtalt/approx v1.0.0 // indirect
github.com/leodido/go-urn v1.4.0 // indirect
github.com/lestrrat-go/blackmagic v1.0.4 // indirect
github.com/lestrrat-go/httpcc v1.0.1 // indirect
github.com/lestrrat-go/httprc v1.0.6 // indirect
github.com/lestrrat-go/iter v1.0.2 // indirect
github.com/lestrrat-go/option v1.0.1 // indirect
github.com/magiconair/properties v1.8.10 // indirect
github.com/miekg/dns v1.1.62 // indirect
github.com/philhofer/fwd v1.2.0 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/quic-go/quic-go v0.59.0
github.com/rogpeppe/go-internal v1.13.1 // indirect
github.com/segmentio/asm v1.2.0 // indirect
github.com/stretchr/objx v0.5.2 // indirect
github.com/xmidt-org/httpaux v0.4.2 // indirect
go.uber.org/dig v1.19.0 // indirect
go.uber.org/multierr v1.11.0 // indirect
golang.org/x/crypto v0.41.0 // indirect
golang.org/x/mod v0.27.0 // indirect
golang.org/x/net v0.43.0 // indirect
golang.org/x/sync v0.16.0 // indirect
golang.org/x/sys v0.35.0 // indirect
golang.org/x/tools v0.36.0 // indirect
gopkg.in/natefinch/lumberjack.v2 v2.2.1 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)