mirror of
https://github.com/gitpod-io/gitpod.git
synced 2025-12-08 17:36:30 +00:00
* Update go dependencies Signed-off-by: Manuel de Brito Fontes <aledbf@gmail.com> * Update runc to v1.1.5 * Update docker cli to v23.0.2+incompatible --------- Signed-off-by: Manuel de Brito Fontes <aledbf@gmail.com>
46 lines
1.9 KiB
Modula-2
46 lines
1.9 KiB
Modula-2
module github.com/gitpod-io/gitpod/ide-service-api
|
|
|
|
go 1.19
|
|
|
|
require (
|
|
github.com/gitpod-io/gitpod/common-go v0.0.0-00010101000000-000000000000
|
|
golang.org/x/xerrors v0.0.0-20220609144429-65e65417b02f
|
|
google.golang.org/grpc v1.52.3
|
|
google.golang.org/protobuf v1.28.1
|
|
)
|
|
|
|
require (
|
|
github.com/beorn7/perks v1.0.1 // indirect
|
|
github.com/cespare/xxhash/v2 v2.1.2 // indirect
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
github.com/golang/protobuf v1.5.2 // indirect
|
|
github.com/grpc-ecosystem/go-grpc-middleware v1.3.0 // indirect
|
|
github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0 // indirect
|
|
github.com/hashicorp/golang-lru v0.5.1 // indirect
|
|
github.com/heptiolabs/healthcheck v0.0.0-20211123025425-613501dd5deb // indirect
|
|
github.com/kr/pretty v0.3.1 // indirect
|
|
github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect
|
|
github.com/opentracing/opentracing-go v1.2.0 // indirect
|
|
github.com/pkg/errors v0.9.1 // indirect
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
github.com/prometheus/client_golang v1.14.0 // indirect
|
|
github.com/prometheus/client_model v0.3.0 // indirect
|
|
github.com/prometheus/common v0.42.0 // indirect
|
|
github.com/prometheus/procfs v0.8.0 // indirect
|
|
github.com/sirupsen/logrus v1.9.0 // indirect
|
|
github.com/slok/go-http-metrics v0.10.0 // indirect
|
|
github.com/stretchr/testify v1.8.1 // indirect
|
|
github.com/uber/jaeger-client-go v2.29.1+incompatible // indirect
|
|
github.com/uber/jaeger-lib v2.4.1+incompatible // indirect
|
|
go.uber.org/atomic v1.4.0 // indirect
|
|
golang.org/x/net v0.7.0 // indirect
|
|
golang.org/x/sync v0.0.0-20220601150217-0de741cfad7f // indirect
|
|
golang.org/x/sys v0.5.0 // indirect
|
|
golang.org/x/text v0.7.0 // indirect
|
|
golang.org/x/time v0.0.0-20220922220347-f3bd1da661af // indirect
|
|
google.golang.org/genproto v0.0.0-20221118155620-16455021b5e6 // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
)
|
|
|
|
replace github.com/gitpod-io/gitpod/common-go => ../../common-go // leeway
|