-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #314 from adrianreber/2024-12-17-protobuf
Upgrade to protobuf 3.7.1
- Loading branch information
Showing
10 changed files
with
278 additions
and
219 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,9 @@ | ||
extern crate protobuf_codegen_pure; | ||
extern crate protobuf_codegen; | ||
|
||
fn main() { | ||
protobuf_codegen_pure::Codegen::new() | ||
protobuf_codegen::Codegen::new() | ||
.out_dir("src/bin/common/protos") | ||
.inputs(["protos/mirrormanager.proto"]) | ||
.include("protos") | ||
.run() | ||
.expect("Codegen failed."); | ||
.run_from_script(); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,3 @@ | ||
// @generated | ||
|
||
pub mod mirrormanager; |
Oops, something went wrong.