signal-backup-decode 0.2.3

A simple tool to decode signal backups
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#[cfg(feature = "rebuild-protobuf")]
extern crate protoc_rust;

#[cfg(feature = "rebuild-protobuf")]
fn main() {
	protoc_rust::Codegen::new()
		.out_dir("src")
		.inputs(&["proto/Backups.proto"])
		.include("proto")
		.run()
		.expect("Running protoc failed.");
}

#[cfg(not(feature = "rebuild-protobuf"))]
fn main() {}