Skip to content

Commit

Permalink
go: Remove unnecesary replace directive in go.mod
Browse files Browse the repository at this point in the history
go.mod has a replace directive for google.golang.org/genproto. This
is a workaround for a problem related to the TTRPC package. The problem
has been fixed, and we no longer need the workaround.

Fixes confidential-containers#175

Signed-off-by: Yohei Ueda <[email protected]>
  • Loading branch information
yoheiueda committed Aug 18, 2022
1 parent 17c38f9 commit 57247ef
Show file tree
Hide file tree
Showing 2 changed files with 135 additions and 18 deletions.
7 changes: 2 additions & 5 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ require (
github.com/vishvananda/netlink v1.1.1-0.20220115184804-dd687eb2f2d4
github.com/vishvananda/netns v0.0.0-20210104183010-2eb08e3e575f
golang.org/x/sys v0.0.0-20220422013727-9388b58f7150
google.golang.org/grpc v1.43.0
google.golang.org/grpc v1.44.0
gopkg.in/yaml.v2 v2.4.0
k8s.io/cri-api v0.23.1
libvirt.org/go/libvirt v1.8002.0
Expand Down Expand Up @@ -73,7 +73,4 @@ require (
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
)

replace (
github.com/kata-containers/kata-containers/src/runtime => ../kata-containers/src/runtime
google.golang.org/genproto => google.golang.org/genproto v0.0.0-20180817151627-c66870c02cf8
)
replace github.com/kata-containers/kata-containers/src/runtime => ../kata-containers/src/runtime
Loading

0 comments on commit 57247ef

Please sign in to comment.