0
0
mirror of https://github.com/signalapp/libsignal.git synced 2024-09-20 03:52:17 +02:00
libsignal/build.rs
Ehren Kret 3bd6d58de2 Create initial commit of signal protocol rust
This supports XEd25519 and has some protobuf compilation going on but
not much else yet at this point.
2020-04-20 21:24:31 -07:00

5 lines
176 B
Rust

fn main() {
prost_build::compile_protos(&["src/signal/proto/transfer.proto"], &["src"]).unwrap();
println!("cargo:rerun-if-changed=src/signal/proto/transfer.proto");
}