tofnd 1.0.1

A cryptographic signing service, used by the Axelar network
1
2
3
4
5
6
7
8
fn main() -> Result<(), Box<dyn std::error::Error>> {
    // TODO: client build is needed only for tests https://github.com/rust-lang/cargo/issues/1581
    tonic_build::configure()
        // .build_client(false)
        // .out_dir(".") // if you want to peek at the generated code
        .compile(&["proto/multisig.proto"], &["proto"])?;
    Ok(())
}