SparsePostQuantumRatchet/build.rs
Graeme Connell 02c99a6b24
Some checks failed
hax / fstar-type-checking (push) Has been cancelled
CI / cargo test (push) Has been cancelled
CI / MSRV (push) Has been cancelled
CI / cross test polynomial i586 (push) Has been cancelled
CI / cross test polynomial i686 (push) Has been cancelled
CI / cross test polynomial aarch64 (push) Has been cancelled
Squashed history.
2025-05-01 10:28:23 -07:00

14 lines
391 B
Rust

// Copyright 2025 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
fn main() {
let protos = ["src/proto/pq_ratchet.proto"];
let mut prost_build = prost_build::Config::new();
prost_build
.compile_protos(&protos, &["src"])
.expect("Protobufs in src are valid");
for proto in &protos {
println!("cargo:rerun-if-changed={proto}");
}
}