58 lines
2.3 KiB
Modula-2
58 lines
2.3 KiB
Modula-2
module github.com/cert-manager/cert-manager/acmesolver-binary
|
|
|
|
go 1.22.0
|
|
|
|
// Do not remove this comment:
|
|
// please place any replace statements here at the top for visibility and add a
|
|
// comment to it as to when it can be removed
|
|
|
|
// Can be removed once expfmt.FmtText is no longer used by any of the libraries we depend on.
|
|
replace github.com/prometheus/common => github.com/prometheus/common v0.46.0
|
|
|
|
replace github.com/prometheus/client_golang => github.com/prometheus/client_golang v1.18.0
|
|
|
|
replace github.com/cert-manager/cert-manager => ../../
|
|
|
|
require (
|
|
github.com/cert-manager/cert-manager v0.0.0-00010101000000-000000000000
|
|
github.com/spf13/cobra v1.8.0
|
|
k8s.io/component-base v0.30.1
|
|
)
|
|
|
|
require (
|
|
github.com/beorn7/perks v1.0.1 // indirect
|
|
github.com/blang/semver/v4 v4.0.0 // indirect
|
|
github.com/cespare/xxhash/v2 v2.3.0 // indirect
|
|
github.com/go-logr/logr v1.4.1 // indirect
|
|
github.com/go-logr/zapr v1.3.0 // indirect
|
|
github.com/gogo/protobuf v1.3.2 // indirect
|
|
github.com/google/go-cmp v0.6.0 // indirect
|
|
github.com/google/gofuzz v1.2.0 // indirect
|
|
github.com/inconshreveable/mousetrap v1.1.0 // indirect
|
|
github.com/json-iterator/go v1.1.12 // indirect
|
|
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
|
|
github.com/modern-go/reflect2 v1.0.2 // indirect
|
|
github.com/prometheus/client_golang v1.19.0 // indirect
|
|
github.com/prometheus/client_model v0.6.1 // indirect
|
|
github.com/prometheus/common v0.48.0 // indirect
|
|
github.com/prometheus/procfs v0.15.0 // indirect
|
|
github.com/spf13/pflag v1.0.5 // indirect
|
|
go.uber.org/multierr v1.11.0 // indirect
|
|
go.uber.org/zap v1.27.0 // indirect
|
|
golang.org/x/net v0.26.0 // indirect
|
|
golang.org/x/sys v0.21.0 // indirect
|
|
golang.org/x/text v0.16.0 // indirect
|
|
google.golang.org/protobuf v1.34.1 // indirect
|
|
gopkg.in/inf.v0 v0.9.1 // indirect
|
|
gopkg.in/yaml.v2 v2.4.0 // indirect
|
|
k8s.io/api v0.30.1 // indirect
|
|
k8s.io/apiextensions-apiserver v0.30.1 // indirect
|
|
k8s.io/apimachinery v0.30.1 // indirect
|
|
k8s.io/klog/v2 v2.120.1 // indirect
|
|
k8s.io/utils v0.0.0-20240502163921-fe8a2dddb1d0 // indirect
|
|
sigs.k8s.io/gateway-api v1.1.0 // indirect
|
|
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
|
|
sigs.k8s.io/structured-merge-diff/v4 v4.4.1 // indirect
|
|
sigs.k8s.io/yaml v1.4.0 // indirect
|
|
)
|