Skip to content

Commit 10dd83b

Browse files
committed
Update and tidy deps
1 parent 4d5bbe4 commit 10dd83b

File tree

2 files changed

+68
-95
lines changed

2 files changed

+68
-95
lines changed

go.mod

+21-27
Original file line numberDiff line numberDiff line change
@@ -7,23 +7,22 @@ replace github.com/tc-hib/winres => github.com/dhaavi/winres v0.2.2
77

88
require (
99
fyne.io/systray v1.11.0
10-
github.com/VictoriaMetrics/metrics v1.34.0
11-
github.com/Xuanwo/go-locale v1.1.0
10+
github.com/VictoriaMetrics/metrics v1.35.1
11+
github.com/Xuanwo/go-locale v1.1.1
1212
github.com/aead/serpent v0.0.0-20160714141033-fba169763ea6
1313
github.com/agext/levenshtein v1.2.3
1414
github.com/armon/go-radix v1.0.0
1515
github.com/awalterschulze/gographviz v2.0.3+incompatible
1616
github.com/bluele/gcache v0.0.2
1717
github.com/brianvoe/gofakeit v3.18.0+incompatible
18-
github.com/cilium/ebpf v0.15.0
18+
github.com/cilium/ebpf v0.16.0
1919
github.com/coreos/go-iptables v0.7.0
2020
github.com/davecgh/go-spew v1.1.1
2121
github.com/dgraph-io/badger v1.6.2
2222
github.com/dhaavi/go-notify v0.0.0-20190209221809-c404b1f22435
2323
github.com/florianl/go-conntrack v0.4.0
2424
github.com/florianl/go-nfqueue v1.3.2
2525
github.com/fogleman/gg v1.3.0
26-
github.com/fxamacker/cbor/v2 v2.7.0
2726
github.com/ghodss/yaml v1.0.0
2827
github.com/godbus/dbus/v5 v5.1.0
2928
github.com/gofrs/uuid v4.4.0+incompatible
@@ -38,16 +37,14 @@ require (
3837
github.com/mat/besticon v3.12.0+incompatible
3938
github.com/mattn/go-colorable v0.1.13
4039
github.com/mattn/go-isatty v0.0.20
41-
github.com/miekg/dns v1.1.61
40+
github.com/miekg/dns v1.1.62
4241
github.com/mitchellh/copystructure v1.2.0
4342
github.com/mitchellh/go-server-timing v1.0.1
4443
github.com/mr-tron/base58 v1.2.0
45-
github.com/oschwald/maxminddb-golang v1.13.0
44+
github.com/oschwald/maxminddb-golang v1.13.1
4645
github.com/r3labs/diff/v3 v3.0.1
47-
github.com/rot256/pblind v0.0.0-20231024115251-cd3f239f28c1
46+
github.com/rot256/pblind v0.0.0-20240730113005-f3275049ead5
4847
github.com/safing/jess v0.3.4
49-
github.com/safing/portbase v0.19.5
50-
github.com/safing/portmaster-android/go v0.0.0-20230830120134-3226ceac3bec
5148
github.com/safing/structures v1.1.0
5249
github.com/seehuhn/fortuna v1.0.1
5350
github.com/shirou/gopsutil v3.21.11+incompatible
@@ -57,17 +54,16 @@ require (
5754
github.com/tannerryan/ring v1.1.2
5855
github.com/tc-hib/winres v0.3.1
5956
github.com/tevino/abool v1.2.0
60-
github.com/tidwall/gjson v1.17.1
57+
github.com/tidwall/gjson v1.17.3
6158
github.com/tidwall/sjson v1.2.5
6259
github.com/umahmood/haversine v0.0.0-20151105152445-808ab04add26
6360
github.com/vincent-petithory/dataurl v1.0.0
64-
github.com/vmihailenco/msgpack/v5 v5.4.1
6561
go.etcd.io/bbolt v1.3.10
66-
golang.org/x/exp v0.0.0-20240613232115-7f521ea00fb8
67-
golang.org/x/image v0.17.0
68-
golang.org/x/net v0.26.0
69-
golang.org/x/sync v0.7.0
70-
golang.org/x/sys v0.21.0
62+
golang.org/x/exp v0.0.0-20240808152545-0cdaa3abc0fa
63+
golang.org/x/image v0.19.0
64+
golang.org/x/net v0.28.0
65+
golang.org/x/sync v0.8.0
66+
golang.org/x/sys v0.24.0
7167
gopkg.in/yaml.v3 v3.0.1
7268
zombiezen.com/go/sqlite v1.3.0
7369
)
@@ -81,14 +77,13 @@ require (
8177
github.com/dgraph-io/ristretto v0.1.1 // indirect
8278
github.com/dustin/go-humanize v1.0.1 // indirect
8379
github.com/felixge/httpsnoop v1.0.4 // indirect
84-
github.com/fxamacker/cbor v1.5.1 // indirect
80+
github.com/fxamacker/cbor/v2 v2.7.0 // indirect
8581
github.com/go-ole/go-ole v1.3.0 // indirect
8682
github.com/godbus/dbus v4.1.0+incompatible // indirect
8783
github.com/golang/freetype v0.0.0-20170609003504-e2365dfdc4a0 // indirect
8884
github.com/golang/gddo v0.0.0-20210115222349-20d68f94ee1f // indirect
8985
github.com/golang/glog v1.2.1 // indirect
9086
github.com/golang/protobuf v1.5.4 // indirect
91-
github.com/google/btree v1.1.2 // indirect
9287
github.com/google/go-cmp v0.6.0 // indirect
9388
github.com/google/uuid v1.6.0 // indirect
9489
github.com/hashicorp/errwrap v1.1.0 // indirect
@@ -112,21 +107,20 @@ require (
112107
github.com/tklauser/numcpus v0.8.0 // indirect
113108
github.com/valyala/fastrand v1.1.0 // indirect
114109
github.com/valyala/histogram v1.2.0 // indirect
110+
github.com/vmihailenco/msgpack/v5 v5.4.1 // indirect
115111
github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect
116112
github.com/x448/float16 v0.8.4 // indirect
117113
github.com/yusufpapurcu/wmi v1.2.4 // indirect
118114
github.com/zalando/go-keyring v0.2.5 // indirect
119-
github.com/zeebo/blake3 v0.2.3 // indirect
120-
golang.org/x/crypto v0.24.0 // indirect
121-
golang.org/x/mod v0.18.0 // indirect
122-
golang.org/x/text v0.16.0 // indirect
123-
golang.org/x/time v0.5.0 // indirect
124-
golang.org/x/tools v0.22.0 // indirect
115+
github.com/zeebo/blake3 v0.2.4 // indirect
116+
golang.org/x/crypto v0.26.0 // indirect
117+
golang.org/x/mod v0.20.0 // indirect
118+
golang.org/x/text v0.17.0 // indirect
119+
golang.org/x/tools v0.24.0 // indirect
125120
google.golang.org/protobuf v1.34.2 // indirect
126121
gopkg.in/yaml.v2 v2.4.0 // indirect
127-
gvisor.dev/gvisor v0.0.0-20240622065613-cd3efc65190a // indirect
128-
modernc.org/libc v1.53.3 // indirect
122+
modernc.org/libc v1.59.9 // indirect
129123
modernc.org/mathutil v1.6.0 // indirect
130124
modernc.org/memory v1.8.0 // indirect
131-
modernc.org/sqlite v1.30.1 // indirect
125+
modernc.org/sqlite v1.32.0 // indirect
132126
)

0 commit comments

Comments
 (0)