Skip to content

Commit 9d101bf

Browse files
committed
chore(deps): bump deps
1 parent 6c31563 commit 9d101bf

File tree

12 files changed

+16
-16
lines changed

12 files changed

+16
-16
lines changed

go.mod

+2-2
Original file line numberDiff line numberDiff line change
@@ -65,10 +65,10 @@ require (
6565
github.com/unicorn-engine/unicorn v0.0.0-20250221133911-76d97f89269f
6666
github.com/vbauerster/mpb/v8 v8.9.2
6767
github.com/xi2/xz v0.0.0-20171230120015-48954b6210f8
68-
golang.org/x/crypto v0.34.0
68+
golang.org/x/crypto v0.35.0
6969
golang.org/x/exp v0.0.0-20250218142911-aa4b98e5adaa
7070
golang.org/x/net v0.35.0
71-
golang.org/x/oauth2 v0.26.0
71+
golang.org/x/oauth2 v0.27.0
7272
golang.org/x/sync v0.11.0
7373
golang.org/x/sys v0.30.0
7474
golang.org/x/term v0.29.0

go.sum

+4-4
Original file line numberDiff line numberDiff line change
@@ -860,8 +860,8 @@ golang.org/x/crypto v0.13.0/go.mod h1:y6Z2r+Rw4iayiXXAIxJIDAJ1zMW4yaTpebo8fPOliY
860860
golang.org/x/crypto v0.19.0/go.mod h1:Iy9bg/ha4yyC70EfRS8jz+B6ybOBKMaSxLj6P6oBDfU=
861861
golang.org/x/crypto v0.23.0/go.mod h1:CKFgDieR+mRhux2Lsu27y0fO304Db0wZe70UKqHu0v8=
862862
golang.org/x/crypto v0.31.0/go.mod h1:kDsLvtWBEx7MV9tJOj9bnXsPbxwJQ6csT/x4KIN4Ssk=
863-
golang.org/x/crypto v0.34.0 h1:+/C6tk6rf/+t5DhUketUbD1aNGqiSX3j15Z6xuIDlBA=
864-
golang.org/x/crypto v0.34.0/go.mod h1:dy7dXNW32cAb/6/PRuTNsix8T+vJAqvuIy5Bli/x0YQ=
863+
golang.org/x/crypto v0.35.0 h1:b15kiHdrGCHrP6LvwaQ3c03kgNhhiMgvlhxHQhmg2Xs=
864+
golang.org/x/crypto v0.35.0/go.mod h1:dy7dXNW32cAb/6/PRuTNsix8T+vJAqvuIy5Bli/x0YQ=
865865
golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA=
866866
golang.org/x/exp v0.0.0-20190306152737-a1d7652674e8/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA=
867867
golang.org/x/exp v0.0.0-20190510132918-efd6b22b2522/go.mod h1:ZjyILWgesfNpC6sMxTJOJm9Kp84zZh5NQWvqDGG3Qr8=
@@ -980,8 +980,8 @@ golang.org/x/oauth2 v0.0.0-20210805134026-6f1e6394065a/go.mod h1:KelEdhl1UZF7XfJ
980980
golang.org/x/oauth2 v0.0.0-20210819190943-2bc19b11175f/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A=
981981
golang.org/x/oauth2 v0.0.0-20211005180243-6b3c2da341f1/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A=
982982
golang.org/x/oauth2 v0.0.0-20211104180415-d3ed0bb246c8/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A=
983-
golang.org/x/oauth2 v0.26.0 h1:afQXWNNaeC4nvZ0Ed9XvCCzXM6UHJG7iCg0W4fPqSBE=
984-
golang.org/x/oauth2 v0.26.0/go.mod h1:XYTD2NtWslqkgxebSiOHnXEap4TF09sJSc7H1sXbhtI=
983+
golang.org/x/oauth2 v0.27.0 h1:da9Vo7/tDv5RH/7nZDz1eMGS/q1Vv1N/7FCrBhI9I3M=
984+
golang.org/x/oauth2 v0.27.0/go.mod h1:onh5ek6nERTohokkhCD/y2cV4Do3fxFHFuAejCkRWT8=
985985
golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
986986
golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
987987
golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=

pkg/aea/decrypt.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package aea
22

3-
//go:generate stringer -type=compressionType -output aea_string.go
3+
//go:generate go tool stringer -type=compressionType -output aea_string.go
44

55
import (
66
"bytes"

pkg/car/format.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package car
22

3-
//go:generate stringer -type=renditionAttributeType,renditionLayoutType,resourceID,csiBitmapEncoding -output car_string.go
3+
//go:generate go tool stringer -type=renditionAttributeType,renditionLayoutType,resourceID,csiBitmapEncoding -output car_string.go
44

55
import (
66
"bytes"

pkg/ctf/types.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package ctf
22

3-
//go:generate stringer -type=kind,floatEncoding -output types_string.go
3+
//go:generate go tool stringer -type=kind,floatEncoding -output types_string.go
44

55
import (
66
"encoding/json"

pkg/dyld/closure.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import (
1414
"github.com/olekukonko/tablewriter"
1515
)
1616

17-
//go:generate stringer -type=closureType,linkKind -output closure_string.go
17+
//go:generate go tool stringer -type=closureType,linkKind -output closure_string.go
1818

1919
type closureType uint32
2020

pkg/dyld/prebuilt_types.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package dyld
22

3-
//go:generate stringer -type=dyld_section_location_kind -trimprefix=dyld_section_location_ -output prebuilt_string.go
3+
//go:generate go tool stringer -type=dyld_section_location_kind -trimprefix=dyld_section_location_ -output prebuilt_string.go
44

55
import (
66
"crypto/sha1"

pkg/emu/emu.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
package emu
44

5-
//go:generate stringer -type=interrupt,branchType,pstateMode -tags=unicorn -output emu_string.go
5+
//go:generate go tool stringer -type=interrupt,branchType,pstateMode -tags=unicorn -output emu_string.go
66

77
import (
88
"fmt"

pkg/kernelcache/mig.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package kernelcache
22

3-
//go:generate stringer -type=SubsystemStart -output mig_string.go
3+
//go:generate go tool stringer -type=SubsystemStart -output mig_string.go
44

55
import (
66
"bytes"

pkg/ota/yaa/yaa.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package yaa
22

3-
//go:generate stringer -type=entryType,patchType -trimprefix=Patch_ -output yaa_string.go
3+
//go:generate go tool stringer -type=entryType,patchType -trimprefix=Patch_ -output yaa_string.go
44

55
import (
66
"bytes"

pkg/usb/pcap/types.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package pcap
22

3-
//go:generate stringer -type=iface,protocolFamily -output types_string.go
3+
//go:generate go tool stringer -type=iface,protocolFamily -output types_string.go
44

55
type protocolFamily uint32 // for darwin
66

pkg/usb/springboard/springboard.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package springboard
22

3-
//go:generate stringer -type=Orientation -output springboard_string.go
3+
//go:generate go tool stringer -type=Orientation -output springboard_string.go
44

55
import (
66
"github.com/blacktop/ipsw/pkg/usb"

0 commit comments

Comments
 (0)