We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f4c8048 commit ab38c43Copy full SHA for ab38c43
sorock/build.rs
@@ -1,5 +1,5 @@
1
-use std::path::PathBuf;
2
use protox::prost::Message;
+use std::path::PathBuf;
3
4
fn main() {
5
let out_dir = std::env::var("OUT_DIR").unwrap();
tests/testapp/build.rs
@@ -1,6 +1,4 @@
let fds = protox::compile(&["ping.proto"], &["proto"]).unwrap();
- tonic_build::configure()
- .compile_fds(fds)
- .unwrap();
+ tonic_build::configure().compile_fds(fds).unwrap();
6
}
0 commit comments