mollysocket 1.7.1

MollySocket allows getting signal notifications via UnifiedPush.
1
2
3
4
5
6
7
8
9
10
11
12
13
use std::io::Result;
fn main() -> Result<()> {
    println!("cargo:warning=STARTING");
    prost_build::compile_protos(
        &[
            "proto/SignalService.proto",
            "proto/WebSocketResources.proto",
        ],
        &["proto/"],
    )?;
    println!("cargo:warning=DONE: `fd signal target` to find .rs");
    Ok(())
}