Public Access
8 lines
273 B
Rust
8 lines
273 B
Rust
// This is a stub build.rs that just ensures OUT_DIR is available
|
|
// The actual protobuf compilation happens in the main charybdis crate
|
|
|
|
fn main() {
|
|
// Nothing to do - we just need this to exist so OUT_DIR is defined
|
|
println!("cargo:rerun-if-changed=build.rs");
|
|
}
|