mirror of
https://github.com/siderolabs/discovery-service.git
synced 2025-03-14 09:55:08 +00:00
Fixes #5 Batch watch responses in a single batch so that client can quickly know that initial snapshot got delivered. Bump go.mod deps. Implement more limits. Signed-off-by: Andrey Smirnov <andrey.smirnov@talos-systems.com>
37 lines
1.4 KiB
Modula-2
37 lines
1.4 KiB
Modula-2
module github.com/talos-systems/discovery-service
|
|
|
|
go 1.17
|
|
|
|
require (
|
|
github.com/grpc-ecosystem/go-grpc-middleware v1.3.0
|
|
github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0
|
|
github.com/prometheus/client_golang v1.11.0
|
|
github.com/stretchr/testify v1.7.0
|
|
go.uber.org/zap v1.19.1
|
|
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c
|
|
google.golang.org/grpc v1.40.0
|
|
google.golang.org/protobuf v1.27.1
|
|
inet.af/netaddr v0.0.0-20210903134321-85fa6c94624e
|
|
)
|
|
|
|
require (
|
|
github.com/beorn7/perks v1.0.1 // indirect
|
|
github.com/cespare/xxhash/v2 v2.1.1 // indirect
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
github.com/golang/protobuf v1.5.0 // indirect
|
|
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
github.com/prometheus/client_model v0.2.0 // indirect
|
|
github.com/prometheus/common v0.26.0 // indirect
|
|
github.com/prometheus/procfs v0.6.0 // indirect
|
|
go.uber.org/atomic v1.7.0 // indirect
|
|
go.uber.org/multierr v1.6.0 // indirect
|
|
go4.org/intern v0.0.0-20210108033219-3eb7198706b2 // indirect
|
|
go4.org/unsafe/assume-no-moving-gc v0.0.0-20201222180813-1025295fd063 // indirect
|
|
golang.org/x/net v0.0.0-20210405180319-a5a99cb37ef4 // indirect
|
|
golang.org/x/sys v0.0.0-20210603081109-ebe580a85c40 // indirect
|
|
golang.org/x/text v0.3.6 // indirect
|
|
google.golang.org/genproto v0.0.0-20200526211855-cb27e3aa2013 // indirect
|
|
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
|
|
)
|