Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use new etcd modules #12

Merged
merged 2 commits into from
Jun 3, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 1 addition & 1 deletion backend/etcd/etcd.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (

"github.com/bketelsen/crypt/backend"

goetcd "github.com/coreos/etcd/client"
goetcd "go.etcd.io/etcd/client/v2"
)

type Client struct {
Expand Down
27 changes: 4 additions & 23 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,28 +4,9 @@ go 1.12

require (
cloud.google.com/go/firestore v1.1.0
github.com/coreos/bbolt v1.3.3 // indirect
github.com/coreos/etcd v3.3.25+incompatible
github.com/coreos/go-semver v0.3.0 // indirect
github.com/coreos/go-systemd v0.0.0-20191104093116-d3cd4ed1dbcf // indirect
github.com/dustin/go-humanize v1.0.0 // indirect
github.com/gogo/protobuf v1.3.1 // indirect
github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e // indirect
github.com/google/btree v1.0.0 // indirect
github.com/google/uuid v1.1.1 // indirect
github.com/grpc-ecosystem/go-grpc-middleware v1.2.1 // indirect
github.com/grpc-ecosystem/grpc-gateway v1.14.6 // indirect
github.com/hashicorp/consul/api v1.1.0
github.com/jonboulle/clockwork v0.2.0 // indirect
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
github.com/modern-go/reflect2 v1.0.1 // indirect
github.com/prometheus/client_golang v1.7.1 // indirect
github.com/spf13/cobra v1.0.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/tmc/grpc-websocket-proxy v0.0.0-20200427203606-3cfed13b9966 // indirect
go.uber.org/zap v1.15.0 // indirect
golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550
google.golang.org/api v0.13.0
google.golang.org/grpc v1.29.1
sigs.k8s.io/yaml v1.2.0 // indirect
go.etcd.io/etcd/client/v2 v2.305.0-beta.2
golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9
google.golang.org/api v0.44.0
google.golang.org/grpc v1.37.0
)
538 changes: 325 additions & 213 deletions go.sum

Large diffs are not rendered by default.

12 changes: 12 additions & 0 deletions vendor/cloud.google.com/go/.gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

607 changes: 602 additions & 5 deletions vendor/cloud.google.com/go/CHANGES.md

Large diffs are not rendered by default.

158 changes: 80 additions & 78 deletions vendor/cloud.google.com/go/CONTRIBUTING.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading