


When php editor Banana is dealing with compilation errors, sometimes the "go mod tidy" command complains that the protobuf package generated by bazel is missing. The solution to this problem is actually very simple. You only need to manually add the corresponding protobuf package dependency in the go.mod file. By executing the "go mod tidy" command to update the dependencies, compiling again will eliminate the problem of package loss. This method is simple and effective, and can help developers quickly solve compilation errors and improve development efficiency.
Question content
I have a .proto
protobuf definition file in the directory and I am using bazel to build a go library from it as shown below (using ## below #gazelle Generated
build.bazel file):
load("@rules_proto//proto:defs.bzl", "proto_library") load("@io_bazel_rules_go//go:def.bzl", "go_library") load("@io_bazel_rules_go//proto:def.bzl", "go_proto_library") proto_library( name = "events_proto", srcs = ["events.proto"], visibility = ["//visibility:public"], deps = ["@com_google_protobuf//:timestamp_proto"], ) go_proto_library( name = "proto_go_proto", importpath = "github.com/acme/icoyote/proto", proto = ":events_proto", visibility = ["//visibility:public"], ) go_library( name = "proto", embed = [":proto_go_proto"], importpath = "github.com/acme/icoyote/proto", visibility = ["//visibility:public"], )Some other code depends on
//icoyote/proto:proto, and when I run
go mod tidy in the module, it complains about not finding package
github. com/acme/icoyote/proto:
go: finding module for package github.com/acme/icoyote/proto github.com/acme/icoyote/cmd/icoyote imports github.com/acme/icoyote/proto: no matching versions for query "latest"p>Any IDE without bazel integration (such as vscode, goland/intellij without bazel plugin) will also complain
what do I do? SolutionThis happens because bazel
does use protoc in the
build file Generate
.go files under the
go_proto_library rule, but only write them to a temporary directory under
bazel - bin used by the
go_library rule , and
go mod tidy doesn't seem to look into
bazel-bin (probably because it's a symlink, but if so, those files are relative to
go.mod The paths to the locations are all wrong)
protoc yourself, and remove the
proto_library and
go_proto_library rules in the
build file , and then change the
go_library rules to build the generated files. This is sub-optimal because you have to manually rerun
protoc every time you change the
.proto file (if you put it into the
//go:generate directive , you must rerun
gogenerate).
- Add the file
- empty.go
to the directory containing the
.protofile. It should look like this:
package proto
- Then tell
- ngazelle
to ignore
empty.go(so when you run
gazelle --fixit won't try to
go_libraryRules added to the
buildfile). We do this by adding the following to the
buildfile:
# gazelle:exclude empty.go
go mod tidy.
protoc approach. Maybe there is a way to create a symlink to bazel under
bazel-bin and write out the location of the generated
.go file and force
go mod tidy to follow It does, but I haven't tried it yet. If you do this and it works, please share!
The above is the detailed content of `go mod tidy` complains that the protobuf package generated by bazel is missing. For more information, please follow other related articles on the PHP Chinese website!

当我尝试使用java.util.concurrent中的timeunit类时遇到问题。它发生在oraclejdk21.0.1(配置如下)+intellijidea2023.1.5(社区版)-当前最新更新(更新:正如我一开始所想的,因为我运行了更新-请参阅下面的解决方案)。我的计算机上的配置(通过控制台中的java-version获取):javaversion"21.0.1"2023-10-17ltsjava(tm)seruntimeenvironme

在第一部分介绍了基本的Flask和IntellijIDEA集成、项目和虚拟环境的设置、依赖安装等方面的内容。接下来我们将继续探讨更多的Pythonweb应用程序开发技巧,构建更高效的工作环境:使用FlaskBlueprintsFlaskBlueprints允许您组织应用程序代码以便于管理和维护。Blueprint是一个Python模块,能够包

JSP文件打开方式JSP(JavaServerPages)是一种动态网页技术,它允许程序员在HTML页面中嵌入Java代码。JSP文件是文本文件,其中包含HTML代码、XML标记和Java代码。当JSP文件被请求时,它会被编译成JavaServlet,然后由Web服务器执行。打开JSP文件的方法有几种方法可以打开JSP文件。最简单的方法是使用文本编辑器,

手机Java编程软件推荐:让你轻松入门的五款工具在这个数字化时代,手机已经成为了我们生活中不可或缺的一部分。无论是工作、学习还是娱乐,手机几乎可以满足我们所有的需求。而对于编程爱好者来说,手机也可以成为一个非常实用的工具,帮助他们随时随地进行代码编写与学习。本文将向大家推荐五款手机Java编程软件,让你轻松入门,享受编程的乐趣。AIDEAIDE是一款功能强大

在今天的软件开发领域,Java作为一种广泛应用的编程语言,有着很高的开发效率和便捷性。为了提高开发效率,拥有一个优秀的Java编程环境是至关重要的。本文将为大家推荐几款必备的Java编程软件,帮助打造一个高效的开发环境。EclipseEclipse是一款功能强大且广泛使用的Java集成开发环境(IDE)。它提供了丰富的功能和插件,支持Java项目的开发、调试

Java开发工具评测:哪个才是最适合你的选择?作为当今最流行的编程语言之一,Java在软件开发领域发挥着重要的作用。而在Java开发过程中,选择一个适合自己的开发工具是至关重要的。本文将对几种常见的Java开发工具进行评测,并给出适用场景的建议。EclipseEclipse是一款开源、跨平台的Java集成开发环境(IDE),被广泛用于Java项目的开发。它提

IDEA(IntelliJIDEA)是一款强大的集成开发环境,可以帮助开发人员快速高效地开发各种Java应用程序。在Java项目开发中,使用Maven作为项目管理工具能够帮助我们更好地管理依赖库、构建项目等。本文将详细介绍如何在IDEA中创建一个Maven项目的基本步骤,同时提供具体的代码示例。步骤一:打开IDEA并创建新项目打开IntelliJIDEA

随着现代工作和生活的步伐不断加快,高效工作成为每个人追求的目标。而在信息技术领域,编程成为了提升效率的重要工具之一。在众多的编程语言中,Java作为一种广泛应用的高级编程语言,其编程软件更是成为提升效率的神器。本文就为大家推荐几款优秀的Java编程软件。首先要推荐的是Eclipse。作为Java开发者最常用的集成开发环境(IDE),Eclipse具备了强大的


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

SublimeText3 English version
Recommended: Win version, supports code prompts!

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment
