Merge branch 'feature/PRXS-1066-PerxisGoUtil' into 'feature/1004-AddPublicEntities'
Добавлен util See merge request perxis/perxis-go!13
No related branches found
No related tags found
Showing
- .gitlab-ci.yml 0 additions, 1 deletion.gitlab-ci.yml
- go.mod 13 additions, 4 deletionsgo.mod
- go.sum 205 additions, 8 deletionsgo.sum
- pkg/data/crypto.go 63 additions, 0 deletionspkg/data/crypto.go
- pkg/data/list.go 186 additions, 0 deletionspkg/data/list.go
- pkg/data/list_test.go 141 additions, 0 deletionspkg/data/list_test.go
- pkg/data/strings.go 91 additions, 0 deletionspkg/data/strings.go
- pkg/data/strings_test.go 83 additions, 0 deletionspkg/data/strings_test.go
... | ... | @@ -3,26 +3,35 @@ module git.perx.ru/perxis/perxis-go |
go 1.18 | ||
require ( | ||
github.com/getsentry/sentry-go v0.12.0 | ||
github.com/go-kit/kit v0.12.0 | ||
github.com/golang/protobuf v1.5.2 | ||
github.com/hashicorp/go-multierror v1.1.1 | ||
github.com/json-iterator/go v1.1.12 | ||
github.com/pkg/errors v0.9.1 | ||
github.com/rs/xid v1.4.0 | ||
github.com/stretchr/testify v1.7.0 | ||
golang.org/x/net v0.0.0-20210917221730-978cfadd31cf | ||
go.uber.org/zap v1.19.1 | ||
golang.org/x/crypto v0.0.0-20210921155107-089bfa567519 | ||
golang.org/x/net v0.0.0-20211008194852-3b03d305991f | ||
google.golang.org/grpc v1.45.0 | ||
google.golang.org/protobuf v1.28.0 | ||
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b | ||
) | ||
require ( | ||
github.com/davecgh/go-spew v1.1.0 // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/go-kit/log v0.2.0 // indirect | ||
github.com/go-logfmt/logfmt v0.5.1 // indirect | ||
github.com/google/go-cmp v0.5.7 // indirect | ||
github.com/hashicorp/errwrap v1.0.0 // indirect | ||
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect | ||
github.com/modern-go/reflect2 v1.0.2 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/stretchr/objx v0.1.0 // indirect | ||
golang.org/x/sys v0.0.0-20210917161153-d61c044b1678 // indirect | ||
go.uber.org/atomic v1.9.0 // indirect | ||
go.uber.org/multierr v1.7.0 // indirect | ||
golang.org/x/sys v0.0.0-20211007075335-d3039528d8ac // indirect | ||
golang.org/x/text v0.3.7 // indirect | ||
google.golang.org/genproto v0.0.0-20210917145530-b395a37504d4 // indirect | ||
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c // indirect | ||
) |
This diff is collapsed.
pkg/data/crypto.go
0 → 100644
pkg/data/list.go
0 → 100644
pkg/data/list_test.go
0 → 100644
pkg/data/strings.go
0 → 100644
pkg/data/strings_test.go
0 → 100644
Please register or sign in to comment