-
Notifications
You must be signed in to change notification settings - Fork 66
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
go.mod 727d699f42b4bcfca727b86d0b1a5ce202dcb5a9
- Loading branch information
Showing
3 changed files
with
63 additions
and
667 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,80 +1,67 @@ | ||
module github.com/yandex/pandora | ||
|
||
go 1.21 | ||
|
||
toolchain go1.22.1 | ||
|
||
require ( | ||
github.com/PaesslerAG/jsonpath v0.1.1 | ||
github.com/antchfx/htmlquery v1.2.4 | ||
github.com/antchfx/xpath v1.2.0 | ||
github.com/asaskevich/govalidator v0.0.0-20230301143203-a9d515a09cc2 | ||
github.com/c2h5oh/datasize v0.0.0-20220606134207-859f65c6625b | ||
github.com/facebookgo/stack v0.0.0-20160209184415-751773369052 | ||
github.com/facebookgo/stackerr v0.0.0-20150612192056-c2fcf88613f4 | ||
github.com/gofrs/uuid v4.2.0+incompatible | ||
github.com/golang/protobuf v1.5.4 | ||
github.com/hashicorp/go-multierror v1.1.1 | ||
github.com/hashicorp/hcl/v2 v2.16.2 | ||
github.com/jhump/protoreflect v1.15.6 | ||
github.com/json-iterator/go v1.1.12 | ||
github.com/mitchellh/mapstructure v1.5.1-0.20220423185008-bf980b35cac4 | ||
github.com/pkg/errors v0.9.1 | ||
github.com/spf13/afero v1.10.0 | ||
github.com/spf13/viper v1.16.0 | ||
github.com/stretchr/testify v1.9.0 | ||
github.com/zclconf/go-cty v1.13.2 | ||
go.uber.org/atomic v1.11.0 | ||
go.uber.org/zap v1.27.0 | ||
golang.org/x/exp v0.0.0-20240222234643-814bf88cf225 | ||
golang.org/x/net v0.22.0 | ||
golang.org/x/xerrors v0.0.0-20231012003039-104605ab7028 | ||
google.golang.org/grpc v1.62.0 | ||
google.golang.org/protobuf v1.33.0 | ||
gopkg.in/bluesuncorp/validator.v9 v9.10.0 | ||
gopkg.in/yaml.v2 v2.4.0 | ||
) | ||
|
||
require ( | ||
github.com/PaesslerAG/gval v1.2.1 // indirect | ||
github.com/agext/levenshtein v1.2.3 // indirect | ||
github.com/apparentlymart/go-textseg/v13 v13.0.0 // indirect | ||
github.com/bufbuild/protocompile v0.9.0 // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/frankban/quicktest v1.14.6 // indirect | ||
github.com/fsnotify/fsnotify v1.7.0 // indirect | ||
github.com/go-playground/locales v0.14.1 // indirect | ||
github.com/go-playground/universal-translator v0.18.1 // indirect | ||
github.com/go-test/deep v1.1.0 // indirect | ||
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect | ||
github.com/google/go-cmp v0.6.0 // indirect | ||
github.com/hashicorp/errwrap v1.1.0 // indirect | ||
github.com/hashicorp/hcl v1.0.0 // indirect | ||
github.com/kylelemons/godebug v1.1.0 // indirect | ||
github.com/magiconair/properties v1.8.7 // indirect | ||
github.com/mitchellh/go-wordwrap v1.0.1 // indirect | ||
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect | ||
github.com/modern-go/reflect2 v1.0.2 // indirect | ||
github.com/pelletier/go-toml/v2 v2.0.8 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/rogpeppe/go-internal v1.12.0 // indirect | ||
github.com/sergi/go-diff v1.3.1 // indirect | ||
github.com/shopspring/decimal v1.3.1 // indirect | ||
github.com/spf13/cast v1.5.1 // indirect | ||
github.com/spf13/jwalterweatherman v1.1.0 // indirect | ||
github.com/spf13/pflag v1.0.6-0.20201009195203-85dd5c8bc61c // indirect | ||
github.com/stretchr/objx v0.5.2 // indirect | ||
github.com/subosito/gotenv v1.4.2 // indirect | ||
go.uber.org/multierr v1.11.0 // indirect | ||
golang.org/x/sys v0.18.0 // indirect | ||
golang.org/x/text v0.14.0 // indirect | ||
google.golang.org/genproto/googleapis/rpc v0.0.0-20240304212257-790db918fca8 // indirect | ||
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect | ||
gopkg.in/go-playground/assert.v1 v1.2.1 // indirect | ||
gopkg.in/ini.v1 v1.67.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
) | ||
go 1.22.0 | ||
|
||
replace github.com/insomniacslk/dhcp => github.com/insomniacslk/dhcp v0.0.0-20210120172423-cc9239ac6294 | ||
|
||
replace cloud.google.com/go/pubsub => cloud.google.com/go/pubsub v1.30.0 | ||
|
||
replace google.golang.org/grpc => google.golang.org/grpc v1.56.3 | ||
|
||
replace github.com/jackc/pgtype => github.com/jackc/pgtype v1.12.0 | ||
|
||
replace github.com/aws/aws-sdk-go => github.com/aws/aws-sdk-go v1.46.7 | ||
|
||
replace k8s.io/api => k8s.io/api v0.26.1 | ||
|
||
replace k8s.io/apiextensions-apiserver => k8s.io/apiextensions-apiserver v0.26.1 | ||
|
||
replace k8s.io/apimachinery => k8s.io/apimachinery v0.26.1 | ||
|
||
replace k8s.io/apiserver => k8s.io/apiserver v0.26.1 | ||
|
||
replace k8s.io/cli-runtime => k8s.io/cli-runtime v0.26.1 | ||
|
||
replace k8s.io/client-go => k8s.io/client-go v0.26.1 | ||
|
||
replace k8s.io/cloud-provider => k8s.io/cloud-provider v0.26.1 | ||
|
||
replace k8s.io/cluster-bootstrap => k8s.io/cluster-bootstrap v0.26.1 | ||
|
||
replace k8s.io/code-generator => k8s.io/code-generator v0.26.1 | ||
|
||
replace k8s.io/component-base => k8s.io/component-base v0.26.1 | ||
|
||
replace k8s.io/cri-api => k8s.io/cri-api v0.23.5 | ||
|
||
replace k8s.io/csi-translation-lib => k8s.io/csi-translation-lib v0.26.1 | ||
|
||
replace k8s.io/dynamic-resource-allocation => k8s.io/dynamic-resource-allocation v0.26.1 | ||
|
||
replace k8s.io/kube-controller-manager => k8s.io/kube-controller-manager v0.26.1 | ||
|
||
replace k8s.io/kube-proxy => k8s.io/kube-proxy v0.26.1 | ||
|
||
replace k8s.io/kube-scheduler => k8s.io/kube-scheduler v0.26.1 | ||
|
||
replace k8s.io/kubelet => k8s.io/kubelet v0.26.1 | ||
|
||
replace k8s.io/legacy-cloud-providers => k8s.io/legacy-cloud-providers v0.26.1 | ||
|
||
replace k8s.io/mount-utils => k8s.io/mount-utils v0.26.2-rc.0 | ||
|
||
replace k8s.io/pod-security-admission => k8s.io/pod-security-admission v0.26.1 | ||
|
||
replace k8s.io/sample-apiserver => k8s.io/sample-apiserver v0.26.1 | ||
|
||
replace github.com/temporalio/features => github.com/temporalio/features v0.0.0-20231218231852-27c681667dae | ||
|
||
replace github.com/temporalio/features/features => github.com/temporalio/features/features v0.0.0-20231218231852-27c681667dae | ||
|
||
replace github.com/temporalio/features/harness/go => github.com/temporalio/features/harness/go v0.0.0-20231218231852-27c681667dae | ||
|
||
replace github.com/temporalio/omes => github.com/temporalio/omes v0.0.0-20240429210145-5fa5c107b7a8 | ||
|
||
replace github.com/goccy/go-yaml => github.com/goccy/go-yaml v1.9.5 | ||
|
||
replace github.com/aleroyer/rsyslog_exporter => github.com/prometheus-community/rsyslog_exporter v1.1.0 |
Oops, something went wrong.