Implements the following: - grpc based cw client (alsmost chain agnostic, but not fully yet) - All URL based CLI args now use reqwest::Url type. - An almost 'Bin agnostic CliClient' - SSL and DNS resolution support in gramine - Implement generic attestation support for transfers enclave - Misc cleanup
7 lines
189 B
Rust
7 lines
189 B
Rust
fn main() -> Result<(), Box<dyn std::error::Error>> {
|
|
tonic_build::configure()
|
|
.out_dir("src/prost")
|
|
.compile_protos(&["proto/quartz.proto"], &["proto"])?;
|
|
Ok(())
|
|
}
|