-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgo.mod
58 lines (54 loc) · 2.05 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
module github.com/xmidt-org/xmidt-agent
go 1.23
toolchain go1.23.1
require (
github.com/alecthomas/kong v1.8.1
github.com/foxcpp/go-mockdns v1.1.0
github.com/google/uuid v1.6.0
github.com/goschtalt/goschtalt v0.26.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.3
github.com/stretchr/testify v1.10.0
github.com/tinylib/msgp v1.2.5
github.com/xmidt-org/arrange v0.5.1
github.com/xmidt-org/eventor v1.0.23
github.com/xmidt-org/retry v0.0.3
github.com/xmidt-org/sallust v0.2.3
github.com/xmidt-org/wrp-go/v5 v5.0.0
go.nanomsg.org/mangos/v3 v3.4.2
go.uber.org/fx v1.23.0
go.uber.org/zap v1.27.0
gopkg.in/dealancer/validate.v2 v2.1.0
)
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.3.0 // indirect
github.com/goccy/go-json v0.10.4 // indirect
github.com/goschtalt/approx v1.0.0 // indirect
github.com/leodido/go-urn v1.1.0 // indirect
github.com/lestrrat-go/blackmagic v1.0.2 // 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.9 // indirect
github.com/miekg/dns v1.1.62 // indirect
github.com/philhofer/fwd v1.1.3-0.20240916144458-20a13a1f6b7c // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
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.1 // indirect
go.uber.org/dig v1.18.0 // indirect
go.uber.org/multierr v1.11.0 // indirect
golang.org/x/crypto v0.31.0 // indirect
golang.org/x/mod v0.22.0 // indirect
golang.org/x/net v0.33.0 // indirect
golang.org/x/sync v0.10.0 // indirect
golang.org/x/sys v0.28.0 // indirect
golang.org/x/tools v0.28.0 // indirect
gopkg.in/natefinch/lumberjack.v2 v2.2.1 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)