-
Notifications
You must be signed in to change notification settings - Fork 62
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 #15 from daheige/feature/go-mod-update
feat: update go.mod package and adjust go 1.13 location
- Loading branch information
Showing
2 changed files
with
149 additions
and
53 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,29 @@ | ||
module github.com/polarismesh/polaris-go | ||
|
||
go 1.13 | ||
|
||
require ( | ||
github.com/agiledragon/gomonkey v0.0.0-20190517145658-8fa491f7b918 | ||
github.com/agiledragon/gomonkey v2.0.2+incompatible | ||
github.com/ghodss/yaml v1.0.0 | ||
github.com/golang/protobuf v1.4.2 | ||
github.com/golang/protobuf v1.5.2 | ||
github.com/gonum/blas v0.0.0-20181208220705-f22b278b28ac // indirect | ||
github.com/gonum/floats v0.0.0-20181209220543-c233463c7e82 // indirect | ||
github.com/gonum/integrate v0.0.0-20181209220457-a422b5c0fdf2 // indirect | ||
github.com/gonum/internal v0.0.0-20181124074243-f884aa714029 // indirect | ||
github.com/gonum/lapack v0.0.0-20181123203213-e4cdc5a0bff9 // indirect | ||
github.com/gonum/matrix v0.0.0-20181209220409-c518dec07be9 // indirect | ||
github.com/gonum/stat v0.0.0-20181125101827-41a0da705a5b | ||
github.com/google/uuid v1.1.1 | ||
github.com/hashicorp/go-multierror v1.0.0 | ||
github.com/google/uuid v1.3.0 | ||
github.com/hashicorp/go-multierror v1.1.1 | ||
github.com/mitchellh/go-homedir v1.1.0 | ||
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect | ||
github.com/modern-go/reflect2 v1.0.1 | ||
github.com/modern-go/reflect2 v1.0.2 | ||
github.com/natefinch/lumberjack v2.0.0+incompatible | ||
github.com/pkg/errors v0.8.1 // indirect | ||
github.com/smartystreets/goconvey v0.0.0-20190731233626-505e41936337 | ||
github.com/smartystreets/goconvey v1.6.4 | ||
github.com/spaolacci/murmur3 v1.1.0 | ||
github.com/stretchr/testify v1.4.0 // indirect | ||
go.uber.org/atomic v1.4.0 // indirect | ||
go.uber.org/multierr v1.2.0 // indirect | ||
go.uber.org/zap v1.10.0 | ||
golang.org/x/net v0.0.0-20200320220750-118fecf932d8 | ||
google.golang.org/grpc v1.22.0 | ||
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 | ||
go.uber.org/zap v1.19.1 | ||
golang.org/x/net v0.0.0-20210917221730-978cfadd31cf | ||
google.golang.org/grpc v1.40.0 | ||
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 | ||
gopkg.in/natefinch/lumberjack.v2 v2.0.0 // indirect | ||
gopkg.in/yaml.v2 v2.2.2 | ||
gopkg.in/yaml.v2 v2.2.8 | ||
) | ||
|
||
go 1.13 |
Oops, something went wrong.