mirror of
https://github.com/siderolabs/omni.git
synced 2026-04-17 22:11:42 +02:00
Same as https://github.com/siderolabs/talos/pull/12992. The fix PR: neticdk/go-stdlib#44. Signed-off-by: Utku Ozdemir <utku.ozdemir@siderolabs.com> (cherry picked from commit 621d3f4498e5478cab999713bf0b91474986daa6)
121 lines
5.4 KiB
Modula-2
121 lines
5.4 KiB
Modula-2
module github.com/siderolabs/omni/client
|
|
|
|
go 1.26.1
|
|
|
|
// fix for multiple panics, see https://github.com/neticdk/go-stdlib/pull/44
|
|
replace github.com/neticdk/go-stdlib => github.com/smira/go-stdlib v0.0.0-20260318082201-9d387eb2130d
|
|
|
|
require (
|
|
github.com/ProtonMail/gopenpgp/v2 v2.9.0
|
|
github.com/adrg/xdg v0.5.3
|
|
github.com/blang/semver/v4 v4.0.0
|
|
github.com/containers/image/v5 v5.36.2
|
|
github.com/cosi-project/runtime v1.14.0
|
|
github.com/dustin/go-humanize v1.0.1
|
|
github.com/fatih/color v1.18.0
|
|
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.28.0
|
|
github.com/hashicorp/go-multierror v1.1.1
|
|
github.com/jxskiss/base62 v1.1.0
|
|
github.com/klauspost/compress v1.18.4
|
|
github.com/mattn/go-isatty v0.0.20
|
|
github.com/neticdk/go-stdlib v1.0.0
|
|
github.com/planetscale/vtprotobuf v0.6.1-0.20250313105119-ba97887b0a25
|
|
github.com/sergi/go-diff v1.4.0
|
|
github.com/siderolabs/gen v0.8.6
|
|
github.com/siderolabs/go-api-signature v0.3.12
|
|
github.com/siderolabs/go-kubeconfig v0.1.1
|
|
github.com/siderolabs/image-factory v1.0.3
|
|
github.com/siderolabs/proto-codec v0.1.3
|
|
github.com/siderolabs/siderolink v0.3.15
|
|
github.com/siderolabs/talos/pkg/machinery v1.13.0-alpha.2.0.20260226180725-cc636f1dd1f1
|
|
github.com/spf13/cobra v1.10.2
|
|
github.com/stretchr/testify v1.11.1
|
|
github.com/xlab/treeprint v1.2.0
|
|
go.uber.org/zap v1.27.1
|
|
go.yaml.in/yaml/v4 v4.0.0-rc.4
|
|
golang.org/x/sync v0.20.0
|
|
golang.org/x/term v0.40.0
|
|
google.golang.org/grpc v1.79.2
|
|
google.golang.org/protobuf v1.36.12-0.20260120151049-f2248ac996af
|
|
k8s.io/client-go v0.35.2
|
|
)
|
|
|
|
require (
|
|
cel.dev/expr v0.25.1 // indirect
|
|
github.com/ProtonMail/go-crypto v1.4.0 // indirect
|
|
github.com/ProtonMail/go-mime v0.0.0-20230322103455-7d82a3887f2f // indirect
|
|
github.com/antlr4-go/antlr/v4 v4.13.1 // indirect
|
|
github.com/cenkalti/backoff/v4 v4.3.0 // indirect
|
|
github.com/cloudflare/circl v1.6.3 // indirect
|
|
github.com/containerd/go-cni v1.1.13 // indirect
|
|
github.com/containernetworking/cni v1.3.0 // indirect
|
|
github.com/containers/storage v1.59.1 // indirect
|
|
github.com/cpuguy83/go-md2man/v2 v2.0.7 //indirect
|
|
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
|
|
github.com/evanphx/json-patch v5.9.11+incompatible // indirect
|
|
github.com/fxamacker/cbor/v2 v2.9.0 // indirect
|
|
github.com/ghodss/yaml v1.0.0 // indirect
|
|
github.com/go-logr/logr v1.4.3 // indirect
|
|
github.com/google/cel-go v0.27.0 // indirect
|
|
github.com/google/go-cmp v0.7.0 // indirect
|
|
github.com/gosuri/uilive v0.0.4 // indirect
|
|
github.com/hashicorp/errwrap v1.1.0 // indirect
|
|
github.com/inconshreveable/mousetrap v1.1.0 // indirect
|
|
github.com/jsimonetti/rtnetlink/v2 v2.2.0 // indirect
|
|
github.com/json-iterator/go v1.1.12 // indirect
|
|
github.com/mattn/go-colorable v0.1.14 // indirect
|
|
github.com/mdlayher/ethtool v0.5.1 // indirect
|
|
github.com/mdlayher/genetlink v1.3.2 // indirect
|
|
github.com/mdlayher/netlink v1.9.0 // indirect
|
|
github.com/mdlayher/socket v0.5.1 // indirect
|
|
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
|
|
github.com/modern-go/reflect2 v1.0.3-0.20250322232337-35a7c28c31ee // indirect
|
|
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
|
|
github.com/opencontainers/go-digest v1.0.0 // indirect
|
|
github.com/opencontainers/runtime-spec v1.3.0 // indirect
|
|
github.com/petermattis/goid v0.0.0-20260226131333-17d1149c6ac6 // indirect
|
|
github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c // indirect
|
|
github.com/pkg/errors v0.9.1 // indirect
|
|
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
|
|
github.com/russross/blackfriday/v2 v2.1.0 // indirect
|
|
github.com/ryanuber/go-glob v1.0.0 // indirect
|
|
github.com/sasha-s/go-deadlock v0.3.7 // indirect
|
|
github.com/siderolabs/crypto v0.6.4 // indirect
|
|
github.com/siderolabs/go-pointer v1.0.1 // indirect
|
|
github.com/siderolabs/net v0.4.0 // indirect
|
|
github.com/siderolabs/protoenc v0.2.4 // indirect
|
|
github.com/spf13/pflag v1.0.10 // indirect
|
|
github.com/vishvananda/netns v0.0.5 // indirect
|
|
github.com/x448/float16 v0.8.4 // indirect
|
|
go.uber.org/multierr v1.11.0 // indirect
|
|
go.yaml.in/yaml/v2 v2.4.4 // indirect
|
|
go.yaml.in/yaml/v3 v3.0.4 // indirect
|
|
go4.org/netipx v0.0.0-20231129151722-fdeea329fbba // indirect
|
|
golang.org/x/crypto v0.48.0 // indirect
|
|
golang.org/x/exp v0.0.0-20260218203240-3dfff04db8fa // indirect
|
|
golang.org/x/net v0.51.0 // indirect
|
|
golang.org/x/oauth2 v0.36.0 // indirect
|
|
golang.org/x/sys v0.42.0 // indirect
|
|
golang.org/x/text v0.34.0 // indirect
|
|
golang.org/x/time v0.15.0 // indirect
|
|
golang.zx2c4.com/wintun v0.0.0-20230126152724-0fa3db229ce2 // indirect
|
|
golang.zx2c4.com/wireguard v0.0.0-20250521234502-f333402bd9cb // indirect
|
|
golang.zx2c4.com/wireguard/wgctrl v0.0.0-20241231184526-a9ab2273dd10 // indirect
|
|
google.golang.org/genproto/googleapis/api v0.0.0-20260226221140-a57be14db171 // indirect
|
|
google.golang.org/genproto/googleapis/rpc v0.0.0-20260226221140-a57be14db171 // indirect
|
|
gopkg.in/inf.v0 v0.9.1 // indirect
|
|
gopkg.in/yaml.v2 v2.4.0 // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
k8s.io/apimachinery v0.35.2 // indirect
|
|
k8s.io/klog/v2 v2.140.0 // indirect
|
|
k8s.io/kube-openapi v0.0.0-20260304202019-5b3e3fdb0acf // indirect
|
|
k8s.io/utils v0.0.0-20260210185600-b8788abfbbc2 // indirect
|
|
sigs.k8s.io/json v0.0.0-20250730193827-2d320260d730 // indirect
|
|
sigs.k8s.io/randfill v1.0.0 // indirect
|
|
sigs.k8s.io/structured-merge-diff/v6 v6.3.2 // indirect
|
|
sigs.k8s.io/yaml v1.6.0 // indirect
|
|
)
|