-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathgo.mod
More file actions
23 lines (19 loc) · 730 Bytes
/
go.mod
File metadata and controls
23 lines (19 loc) · 730 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
module go.temporal.io/api/cmd/proxygenerator
go 1.21
replace go.temporal.io/api => ../..
require (
go.temporal.io/api v1.14.0
golang.org/x/tools v0.21.1-0.20240508182429-e35e4ccd0d2d
)
require (
github.com/grpc-ecosystem/grpc-gateway/v2 v2.22.0 // indirect
golang.org/x/mod v0.17.0 // indirect
golang.org/x/net v0.33.0 // indirect
golang.org/x/sync v0.10.0 // indirect
golang.org/x/sys v0.28.0 // indirect
golang.org/x/text v0.21.0 // indirect
google.golang.org/genproto/googleapis/api v0.0.0-20240827150818-7e3bb234dfed // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20240827150818-7e3bb234dfed // indirect
google.golang.org/grpc v1.66.0 // indirect
google.golang.org/protobuf v1.34.2 // indirect
)