252a0cb54f
If we go ahead with betterproto on the Python side, it will mean bumping the minimum Python dependency to 3.7.
8 lines
223 B
Rust
8 lines
223 B
Rust
use prost_build;
|
|
|
|
fn main() {
|
|
// avoid default OUT_DIR for now, for code completion
|
|
std::env::set_var("OUT_DIR", "src");
|
|
prost_build::compile_protos(&["../../proto/bridge.proto"], &["../../proto/"]).unwrap();
|
|
}
|