-
Notifications
You must be signed in to change notification settings - Fork 65
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #142 from yandex/arcadia
go 1.17 support
- Loading branch information
Showing
25 changed files
with
196 additions
and
59 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
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
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,46 +1,53 @@ | ||
module github.com/yandex/pandora | ||
|
||
go 1.15 | ||
go 1.17 | ||
|
||
require ( | ||
github.com/BurntSushi/toml v0.3.1 // indirect | ||
github.com/asaskevich/govalidator v0.0.0-20171111151018-521b25f4b05f | ||
github.com/c2h5oh/datasize v0.0.0-20171227191756-4eba002a5eae | ||
github.com/davecgh/go-spew v1.1.0 // indirect | ||
github.com/facebookgo/stack v0.0.0-20160209184415-751773369052 | ||
github.com/facebookgo/stackerr v0.0.0-20150612192056-c2fcf88613f4 | ||
github.com/fatih/structs v1.0.0 | ||
github.com/fsnotify/fsnotify v1.4.7 // indirect | ||
github.com/ghodss/yaml v1.0.0 | ||
github.com/go-playground/locales v0.11.2 // indirect | ||
github.com/go-playground/universal-translator v0.16.0 // indirect | ||
github.com/golang/protobuf v1.3.1 // indirect | ||
github.com/hashicorp/errwrap v0.0.0-20141028054710-7554cd9344ce // indirect | ||
github.com/hashicorp/go-multierror v0.0.0-20171204182908-b7773ae21874 | ||
github.com/hashicorp/hcl v0.0.0-20171017181929-23c074d0eceb // indirect | ||
github.com/jhump/protoreflect v1.10.1 | ||
github.com/json-iterator/go v0.0.0-20180214060632-e7c7f3b33712 | ||
github.com/kr/pretty v0.1.0 // indirect | ||
github.com/magiconair/properties v1.7.6 | ||
github.com/mitchellh/mapstructure v0.0.0-20180203102830-a4e142e9c047 | ||
github.com/onsi/ginkgo v1.4.0 | ||
github.com/onsi/gomega v1.3.0 | ||
github.com/pelletier/go-toml v1.1.0 // indirect | ||
github.com/pkg/errors v0.8.0 | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/pkg/errors v0.9.0 | ||
github.com/pquerna/ffjson v0.0.0-20171002144729-d49c2bc1aa13 | ||
github.com/spf13/afero v1.0.2 | ||
github.com/spf13/viper v1.0.0 | ||
github.com/stretchr/testify v1.7.0 | ||
go.uber.org/atomic v1.3.1 | ||
go.uber.org/zap v1.7.1 | ||
golang.org/x/net v0.0.0-20200822124328-c89045814202 | ||
google.golang.org/grpc v1.41.0 | ||
gopkg.in/bluesuncorp/validator.v9 v9.10.0 | ||
) | ||
|
||
require ( | ||
github.com/davecgh/go-spew v1.1.0 // indirect | ||
github.com/fsnotify/fsnotify v1.4.7 // indirect | ||
github.com/go-playground/locales v0.11.2 // indirect | ||
github.com/go-playground/universal-translator v0.16.0 // indirect | ||
github.com/golang/protobuf v1.4.3 // indirect | ||
github.com/hashicorp/errwrap v0.0.0-20141028054710-7554cd9344ce // indirect | ||
github.com/hashicorp/hcl v0.0.0-20171017181929-23c074d0eceb // indirect | ||
github.com/pelletier/go-toml v1.1.0 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/spf13/cast v1.2.0 // indirect | ||
github.com/spf13/jwalterweatherman v0.0.0-20180109140146-7c0cea34c8ec // indirect | ||
github.com/spf13/pflag v1.0.0 // indirect | ||
github.com/spf13/viper v1.0.0 | ||
github.com/stretchr/objx v0.1.0 // indirect | ||
github.com/stretchr/testify v1.2.1 | ||
go.uber.org/atomic v1.3.1 | ||
go.uber.org/multierr v1.1.0 // indirect | ||
go.uber.org/zap v1.7.1 | ||
golang.org/x/net v0.0.0-20190311183353-d8887717615a | ||
gopkg.in/bluesuncorp/validator.v9 v9.10.0 | ||
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 // indirect | ||
golang.org/x/sys v0.0.0-20200323222414-85ca7c5b95cd // indirect | ||
golang.org/x/text v0.3.0 // indirect | ||
google.golang.org/genproto v0.0.0-20200526211855-cb27e3aa2013 // indirect | ||
google.golang.org/protobuf v1.25.1-0.20200805231151-a709e31e5d12 // indirect | ||
gopkg.in/go-playground/assert.v1 v1.2.1 // indirect | ||
gopkg.in/yaml.v2 v2.0.0 // indirect | ||
gopkg.in/yaml.v2 v2.2.3 // indirect | ||
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c // indirect | ||
) |
Oops, something went wrong.