Skip to content

Commit 3edbf37

Browse files
committed
leeway link
1 parent b96daa8 commit 3edbf37

File tree

2 files changed

+49
-49
lines changed

2 files changed

+49
-49
lines changed

components/usage/go.mod

Lines changed: 47 additions & 47 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,53 @@ module github.com/gitpod-io/gitpod/usage
22

33
go 1.18
44

5+
require (
6+
github.com/gitpod-io/gitpod/common-go v0.0.0-00010101000000-000000000000
7+
github.com/go-sql-driver/mysql v1.6.0
8+
github.com/google/uuid v1.1.2
9+
github.com/prometheus/client_golang v1.12.1
10+
github.com/relvacode/iso8601 v1.1.0
11+
github.com/robfig/cron v1.2.0
12+
github.com/sirupsen/logrus v1.8.1
13+
github.com/spf13/cobra v1.4.0
14+
github.com/stretchr/testify v1.7.0
15+
github.com/stripe/stripe-go/v72 v72.114.0
16+
gorm.io/datatypes v1.0.6
17+
gorm.io/driver/mysql v1.3.3
18+
gorm.io/gorm v1.23.5
19+
)
20+
21+
require (
22+
github.com/beorn7/perks v1.0.1 // indirect
23+
github.com/cespare/xxhash/v2 v2.1.2 // indirect
24+
github.com/davecgh/go-spew v1.1.1 // indirect
25+
github.com/golang/protobuf v1.5.2 // indirect
26+
github.com/grpc-ecosystem/go-grpc-middleware v1.3.0 // indirect
27+
github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0 // indirect
28+
github.com/hashicorp/golang-lru v0.5.1 // indirect
29+
github.com/heptiolabs/healthcheck v0.0.0-20211123025425-613501dd5deb // indirect
30+
github.com/inconshreveable/mousetrap v1.0.0 // indirect
31+
github.com/jinzhu/inflection v1.0.0 // indirect
32+
github.com/jinzhu/now v1.1.4 // indirect
33+
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect
34+
github.com/opentracing/opentracing-go v1.2.0 // indirect
35+
github.com/pmezard/go-difflib v1.0.0 // indirect
36+
github.com/prometheus/client_model v0.2.0 // indirect
37+
github.com/prometheus/common v0.32.1 // indirect
38+
github.com/prometheus/procfs v0.7.3 // indirect
39+
github.com/spf13/pflag v1.0.5 // indirect
40+
golang.org/x/net v0.0.0-20211209124913-491a49abca63 // indirect
41+
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c // indirect
42+
golang.org/x/sys v0.0.0-20220114195835-da31bd327af9 // indirect
43+
golang.org/x/text v0.3.7 // indirect
44+
golang.org/x/time v0.0.0-20191024005414-555d28b269f0 // indirect
45+
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
46+
google.golang.org/genproto v0.0.0-20201019141844-1ed22bb0c154 // indirect
47+
google.golang.org/grpc v1.45.0 // indirect
48+
google.golang.org/protobuf v1.28.0 // indirect
49+
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
50+
)
51+
552
replace github.com/gitpod-io/gitpod/common-go => ../common-go // leeway
653

754
replace k8s.io/api => k8s.io/api v0.23.5 // leeway indirect from components/common-go:lib
@@ -53,50 +100,3 @@ replace k8s.io/kubectl => k8s.io/kubectl v0.23.5 // leeway indirect from compone
53100
replace k8s.io/mount-utils => k8s.io/mount-utils v0.23.5 // leeway indirect from components/common-go:lib
54101

55102
replace k8s.io/pod-security-admission => k8s.io/pod-security-admission v0.23.5 // leeway indirect from components/common-go:lib
56-
57-
require (
58-
github.com/gitpod-io/gitpod/common-go v0.0.0-00010101000000-000000000000
59-
github.com/go-sql-driver/mysql v1.6.0
60-
github.com/google/uuid v1.1.2
61-
github.com/prometheus/client_golang v1.12.1
62-
github.com/relvacode/iso8601 v1.1.0
63-
github.com/robfig/cron v1.2.0
64-
github.com/sirupsen/logrus v1.8.1
65-
github.com/spf13/cobra v1.4.0
66-
github.com/stretchr/testify v1.7.0
67-
github.com/stripe/stripe-go/v72 v72.114.0
68-
gorm.io/datatypes v1.0.6
69-
gorm.io/driver/mysql v1.3.3
70-
gorm.io/gorm v1.23.5
71-
)
72-
73-
require (
74-
github.com/beorn7/perks v1.0.1 // indirect
75-
github.com/cespare/xxhash/v2 v2.1.2 // indirect
76-
github.com/davecgh/go-spew v1.1.1 // indirect
77-
github.com/golang/protobuf v1.5.2 // indirect
78-
github.com/grpc-ecosystem/go-grpc-middleware v1.3.0 // indirect
79-
github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0 // indirect
80-
github.com/hashicorp/golang-lru v0.5.1 // indirect
81-
github.com/heptiolabs/healthcheck v0.0.0-20211123025425-613501dd5deb // indirect
82-
github.com/inconshreveable/mousetrap v1.0.0 // indirect
83-
github.com/jinzhu/inflection v1.0.0 // indirect
84-
github.com/jinzhu/now v1.1.4 // indirect
85-
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect
86-
github.com/opentracing/opentracing-go v1.2.0 // indirect
87-
github.com/pmezard/go-difflib v1.0.0 // indirect
88-
github.com/prometheus/client_model v0.2.0 // indirect
89-
github.com/prometheus/common v0.32.1 // indirect
90-
github.com/prometheus/procfs v0.7.3 // indirect
91-
github.com/spf13/pflag v1.0.5 // indirect
92-
golang.org/x/net v0.0.0-20211209124913-491a49abca63 // indirect
93-
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c // indirect
94-
golang.org/x/sys v0.0.0-20220114195835-da31bd327af9 // indirect
95-
golang.org/x/text v0.3.7 // indirect
96-
golang.org/x/time v0.0.0-20191024005414-555d28b269f0 // indirect
97-
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
98-
google.golang.org/genproto v0.0.0-20201019141844-1ed22bb0c154 // indirect
99-
google.golang.org/grpc v1.45.0 // indirect
100-
google.golang.org/protobuf v1.28.0 // indirect
101-
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
102-
)

install/installer/go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -295,6 +295,8 @@ replace github.com/gitpod-io/gitpod/image-builder => ../components/image-builder
295295

296296
replace github.com/gitpod-io/gitpod/ws-scheduler => ../components/ee/ws-scheduler // leeway
297297

298+
replace github.com/gitpod-io/gitpod/usage => ../../components/usage // leeway
299+
298300
replace github.com/gitpod-io/gitpod/agent-smith => ../../components/ee/agent-smith // leeway
299301

300302
replace github.com/gitpod-io/gitpod/blobserve => ../../components/blobserve // leeway
@@ -313,8 +315,6 @@ replace github.com/gitpod-io/gitpod/openvsx-proxy => ../../components/openvsx-pr
313315

314316
replace github.com/gitpod-io/gitpod/public-api => ../../components/public-api/go // leeway
315317

316-
replace github.com/gitpod-io/gitpod/usage => ../../components/usage // leeway
317-
318318
replace github.com/gitpod-io/gitpod/registry-facade => ../../components/registry-facade // leeway
319319

320320
replace github.com/gitpod-io/gitpod/registry-facade/api => ../../components/registry-facade-api/go // leeway

0 commit comments

Comments
 (0)