-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
20 changed files
with
286 additions
and
646 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,39 +1,46 @@ | ||
module github.com/gcpug/handy-spanner | ||
|
||
go 1.17 | ||
go 1.18 | ||
|
||
require ( | ||
cloud.google.com/go v0.103.0 | ||
cloud.google.com/go/spanner v1.36.0 | ||
github.com/MakeNowJust/memefish v0.0.0-20211014154734-dbfb8b28907d | ||
cloud.google.com/go v0.110.2 | ||
cloud.google.com/go/iam v0.13.0 | ||
cloud.google.com/go/longrunning v0.5.0 | ||
cloud.google.com/go/spanner v1.46.0 | ||
github.com/cloudspannerecosystem/memefish v0.0.0-20230403015737-24c8a514b9e7 | ||
github.com/dgryski/go-farm v0.0.0-20200201041132-a6ae2369ad13 | ||
github.com/golang/protobuf v1.5.2 | ||
github.com/google/go-cmp v0.5.8 | ||
github.com/google/go-cmp v0.5.9 | ||
github.com/google/uuid v1.3.0 | ||
github.com/mattn/go-sqlite3 v1.14.10 | ||
golang.org/x/sync v0.0.0-20220601150217-0de741cfad7f | ||
google.golang.org/api v0.90.0 | ||
google.golang.org/genproto v0.0.0-20220728213248-dd149ef739b9 | ||
google.golang.org/grpc v1.48.0 | ||
google.golang.org/protobuf v1.28.1 | ||
golang.org/x/sync v0.2.0 | ||
google.golang.org/api v0.125.0 | ||
google.golang.org/genproto v0.0.0-20230530153820-e85fd2cbaebc | ||
google.golang.org/genproto/googleapis/rpc v0.0.0-20230530153820-e85fd2cbaebc | ||
google.golang.org/grpc v1.55.0 | ||
google.golang.org/protobuf v1.30.0 | ||
) | ||
|
||
require ( | ||
cloud.google.com/go/compute v1.7.0 // indirect | ||
github.com/census-instrumentation/opencensus-proto v0.3.0 // indirect | ||
github.com/cespare/xxhash/v2 v2.1.2 // indirect | ||
cloud.google.com/go/compute v1.19.3 // indirect | ||
cloud.google.com/go/compute/metadata v0.2.3 // indirect | ||
github.com/census-instrumentation/opencensus-proto v0.4.1 // indirect | ||
github.com/cespare/xxhash/v2 v2.2.0 // indirect | ||
github.com/cncf/udpa/go v0.0.0-20220112060539-c52dc94e7fbe // indirect | ||
github.com/cncf/xds/go v0.0.0-20220520190051-1e77728a1eaa // indirect | ||
github.com/envoyproxy/go-control-plane v0.10.3 // indirect | ||
github.com/envoyproxy/protoc-gen-validate v0.6.7 // indirect | ||
github.com/cncf/xds/go v0.0.0-20230310173818-32f1caf87195 // indirect | ||
github.com/envoyproxy/go-control-plane v0.11.0 // indirect | ||
github.com/envoyproxy/protoc-gen-validate v0.10.0 // indirect | ||
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect | ||
github.com/googleapis/enterprise-certificate-proxy v0.1.0 // indirect | ||
github.com/googleapis/gax-go/v2 v2.4.0 // indirect | ||
go.opencensus.io v0.23.0 // indirect | ||
golang.org/x/net v0.0.0-20220728211354-c7608f3a8462 // indirect | ||
golang.org/x/oauth2 v0.0.0-20220722155238-128564f6959c // indirect | ||
golang.org/x/sys v0.0.0-20220731174439-a90be440212d // indirect | ||
golang.org/x/text v0.3.7 // indirect | ||
golang.org/x/xerrors v0.0.0-20220609144429-65e65417b02f // indirect | ||
github.com/golang/protobuf v1.5.3 // indirect | ||
github.com/google/s2a-go v0.1.4 // indirect | ||
github.com/googleapis/enterprise-certificate-proxy v0.2.3 // indirect | ||
github.com/googleapis/gax-go/v2 v2.10.0 // indirect | ||
go.opencensus.io v0.24.0 // indirect | ||
golang.org/x/crypto v0.9.0 // indirect | ||
golang.org/x/net v0.10.0 // indirect | ||
golang.org/x/oauth2 v0.8.0 // indirect | ||
golang.org/x/sys v0.8.0 // indirect | ||
golang.org/x/text v0.9.0 // indirect | ||
golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect | ||
google.golang.org/appengine v1.6.7 // indirect | ||
google.golang.org/genproto/googleapis/api v0.0.0-20230530153820-e85fd2cbaebc // indirect | ||
) |
Oops, something went wrong.