-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathgo.mod
45 lines (42 loc) · 1.55 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
module github.com/noisysockets/nsh
go 1.22.4
require (
github.com/adrg/xdg v0.5.0
github.com/dpeckett/telemetry v0.1.2
github.com/gofrs/flock v0.12.1
github.com/itchyny/gojq v0.12.16
github.com/miekg/dns v1.1.62
github.com/noisysockets/network v0.23.0
github.com/noisysockets/noisysockets v0.28.0
github.com/noisysockets/resolver v0.14.2
github.com/noisysockets/util v0.1.0
github.com/stretchr/testify v1.9.0
github.com/urfave/cli/v2 v2.27.4
golang.org/x/net v0.29.0
golang.org/x/sync v0.8.0
gopkg.in/yaml.v3 v3.0.1
)
require (
dario.cat/mergo v1.0.1 // indirect
github.com/avast/retry-go/v4 v4.6.0 // indirect
github.com/cpuguy83/go-md2man/v2 v2.0.5 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/google/btree v1.1.3 // indirect
github.com/itchyny/timefmt-go v0.1.6 // indirect
github.com/jinzhu/copier v0.4.0 // indirect
github.com/kr/text v0.2.0 // indirect
github.com/noisysockets/contextio v0.4.0 // indirect
github.com/noisysockets/netstack v0.9.0 // indirect
github.com/noisysockets/netutil v0.9.0 // indirect
github.com/noisysockets/pinger v0.4.3 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/rogpeppe/go-internal v1.12.0 // indirect
github.com/russross/blackfriday/v2 v2.1.0 // indirect
github.com/xrash/smetrics v0.0.0-20240521201337-686a1a2994c1 // indirect
golang.org/x/crypto v0.27.0 // indirect
golang.org/x/mod v0.21.0 // indirect
golang.org/x/sys v0.25.0 // indirect
golang.org/x/time v0.6.0 // indirect
golang.org/x/tools v0.25.0 // indirect
gopkg.in/ini.v1 v1.67.0 // indirect
)