Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions client/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ go 1.25.2
replace (
// forked go-yaml that introduces RawYAML interface, which can be used to populate YAML fields using bytes
// which are then encoded as a valid YAML blocks with proper indentiation
gopkg.in/yaml.v3 => github.com/unix4ever/yaml v0.0.0-20220527175918-f17b0f05cf2c
gopkg.in/yaml.v3 => github.com/unix4ever/yaml/v2 v2.4.0
// our fork for tcpproxy with fixes
inet.af/tcpproxy => github.com/smira/tcpproxy v0.0.0-20200125044825-b6bb9b5b8252
)

require (
github.com/ProtonMail/gopenpgp/v2 v2.9.0
github.com/ProtonMail/gopenpgp/v3 v3.3.0
github.com/adrg/xdg v0.5.3
github.com/blang/semver/v4 v4.0.0
github.com/cosi-project/runtime v1.11.0
Expand All @@ -20,13 +20,13 @@ require (
github.com/gertd/go-pluralize v0.2.1
github.com/google/uuid v1.6.0
github.com/gosuri/uiprogress v0.0.1
github.com/grpc-ecosystem/grpc-gateway/v2 v2.27.2
github.com/grpc-ecosystem/grpc-gateway/v2 v2.27.3
github.com/hashicorp/go-multierror v1.1.1
github.com/hexops/gotextdiff v1.0.3
github.com/jxskiss/base62 v1.1.0
github.com/klauspost/compress v1.18.0
github.com/mattn/go-isatty v0.0.20
github.com/planetscale/vtprotobuf v0.6.1-0.20241121165744-79df5c4772f2
github.com/planetscale/vtprotobuf ba97887b0a25
github.com/sergi/go-diff v1.4.0
github.com/siderolabs/gen v0.8.5
github.com/siderolabs/go-api-signature v0.3.9
Expand All @@ -35,18 +35,18 @@ require (
github.com/siderolabs/image-factory v0.8.4
github.com/siderolabs/proto-codec v0.1.2
github.com/siderolabs/siderolink v0.3.15
github.com/siderolabs/talos/pkg/machinery v1.11.1
github.com/siderolabs/talos/pkg/machinery v1.11.2
github.com/spf13/cobra v1.10.1
github.com/stretchr/testify v1.11.1
github.com/xlab/treeprint v1.2.0
go.uber.org/zap v1.27.0
golang.org/x/sync v0.17.0
golang.org/x/term v0.35.0
google.golang.org/grpc v1.75.1
google.golang.org/protobuf v1.36.9
gopkg.in/yaml.v2 v2.4.0
golang.org/x/term v0.36.0
google.golang.org/grpc v1.76.0
google.golang.org/protobuf v1.36.10
gopkg.in/yaml.v3 v3.0.1
gopkg.in/yaml.v3 v3.0.3
k8s.io/client-go v0.35.0-alpha.0
k8s.io/client-go v11.0.0+incompatible
)

require (
Expand Down
Loading