We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
protobuf_codegen::Codegen::new() .protoc() .includes(&["."]) .input("api.proto") .input("thing.proto") .cargo_out_dir("protos") .run_from_script();
syntax = "proto3"; package api; import "thing.proto"; message Empty {}
$ protoc -I . api.proto -o /dev/null api.proto:5:1: warning: Import thing.proto is unused.
protoc produces a warning, but rust-protobuf hides it.
protoc
rust-protobuf
The text was updated successfully, but these errors were encountered:
No branches or pull requests
protoc
produces a warning, butrust-protobuf
hides it.The text was updated successfully, but these errors were encountered: