mirror of
https://github.com/gitpod-io/gitpod.git
synced 2025-12-08 17:36:30 +00:00
68 lines
2.7 KiB
Modula-2
68 lines
2.7 KiB
Modula-2
module github.com/gitpod-io/gitpod/gitpod-cli
|
|
|
|
go 1.19
|
|
|
|
require (
|
|
github.com/creack/pty v1.1.17
|
|
github.com/gitpod-io/gitpod/common-go v0.0.0-00010101000000-000000000000
|
|
github.com/gitpod-io/gitpod/gitpod-protocol v0.0.0-00010101000000-000000000000
|
|
github.com/gitpod-io/gitpod/ide-metrics-api v0.0.0-00010101000000-000000000000
|
|
github.com/gitpod-io/gitpod/supervisor/api v0.0.0-00010101000000-000000000000
|
|
github.com/go-errors/errors v1.4.2
|
|
github.com/golang/mock v1.6.0
|
|
github.com/google/go-cmp v0.5.9
|
|
github.com/google/shlex v0.0.0-20181106134648-c34317bd91bf
|
|
github.com/google/tcpproxy v0.0.0-20180808230851-dfa16c61dad2
|
|
github.com/gorilla/handlers v1.5.1
|
|
github.com/manifoldco/promptui v0.9.0
|
|
github.com/olekukonko/tablewriter v0.0.5
|
|
github.com/prometheus/procfs v0.8.0
|
|
github.com/sirupsen/logrus v1.8.1
|
|
github.com/sourcegraph/jsonrpc2 v0.0.0-20200429184054-15c2290dcb37
|
|
github.com/spf13/cobra v1.6.1
|
|
golang.org/x/sync v0.0.0-20220601150217-0de741cfad7f
|
|
golang.org/x/term v0.3.0
|
|
golang.org/x/xerrors v0.0.0-20220609144429-65e65417b02f
|
|
google.golang.org/grpc v1.49.0
|
|
gopkg.in/yaml.v2 v2.4.0
|
|
)
|
|
|
|
require (
|
|
github.com/kr/text v0.2.0 // indirect
|
|
github.com/mattn/go-colorable v0.0.9 // indirect
|
|
github.com/mattn/go-isatty v0.0.3 // indirect
|
|
github.com/mgutz/ansi v0.0.0-20200706080929-d51e80ef957d // indirect
|
|
github.com/onsi/ginkgo v1.16.5 // indirect
|
|
github.com/onsi/gomega v1.24.2 // indirect
|
|
golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9 // indirect
|
|
golang.org/x/sys v0.3.0 // indirect
|
|
google.golang.org/genproto v0.0.0-20220822174746-9e6da59bd2fc // indirect
|
|
)
|
|
|
|
require (
|
|
github.com/cenkalti/backoff/v4 v4.1.3 // indirect
|
|
github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e // indirect
|
|
github.com/felixge/httpsnoop v1.0.1 // indirect
|
|
github.com/golang/protobuf v1.5.2 // indirect
|
|
github.com/gorilla/websocket v1.5.0 // indirect
|
|
github.com/grpc-ecosystem/grpc-gateway/v2 v2.11.3 // indirect
|
|
github.com/inconshreveable/mousetrap v1.0.1 // indirect
|
|
github.com/mattn/go-runewidth v0.0.9 // indirect
|
|
github.com/segmentio/backo-go v0.0.0-20200129164019-23eae7c10bd3 // indirect
|
|
github.com/spf13/pflag v1.0.5
|
|
github.com/x-cray/logrus-prefixed-formatter v0.5.2
|
|
github.com/xtgo/uuid v0.0.0-20140804021211-a0b114877d4c // indirect
|
|
golang.org/x/net v0.4.0 // indirect
|
|
golang.org/x/text v0.5.0 // indirect
|
|
google.golang.org/protobuf v1.28.1 // indirect
|
|
gopkg.in/segmentio/analytics-go.v3 v3.1.0 // indirect
|
|
)
|
|
|
|
replace github.com/gitpod-io/gitpod/gitpod-protocol => ../gitpod-protocol/go // leeway
|
|
|
|
replace github.com/gitpod-io/gitpod/supervisor/api => ../supervisor-api/go // leeway
|
|
|
|
replace github.com/gitpod-io/gitpod/ide-metrics-api => ../ide-metrics-api/go // leeway
|
|
|
|
replace github.com/gitpod-io/gitpod/common-go => ../common-go // leeway
|