Skip to content

Commit e2eda24

Browse files
authored
build: upgrade go directive in go.mod to 1.17 (#2443)
This commit enables support for module graph pruning and lazy module loading for projects that are at Go 1.17 or higher. Reference: https://go.dev/ref/mod#go-mod-file-go Reference: https://go.dev/ref/mod#graph-pruning Reference: https://go.dev/ref/mod#lazy-loading Signed-off-by: Eng Zer Jun <[email protected]>
1 parent fe8b269 commit e2eda24

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

go.mod

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/grpc-ecosystem/grpc-gateway/v2
22

3-
go 1.14
3+
go 1.17
44

55
require (
66
github.com/antihax/optional v1.0.0
@@ -14,3 +14,12 @@ require (
1414
google.golang.org/protobuf v1.27.1
1515
sigs.k8s.io/yaml v1.3.0
1616
)
17+
18+
require (
19+
golang.org/x/net v0.0.0-20210405180319-a5a99cb37ef4 // indirect
20+
golang.org/x/sys v0.0.0-20210510120138-977fb7262007 // indirect
21+
golang.org/x/text v0.3.5 // indirect
22+
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
23+
google.golang.org/appengine v1.6.6 // indirect
24+
gopkg.in/yaml.v2 v2.4.0 // indirect
25+
)

0 commit comments

Comments
 (0)