aristech-stt-client 3.3.0

A Rust client library for the Aristech Speech-to-Text API
Documentation
1
2
3
4
5
6
7
8
9
10
fn main() {
    let proto_file = "protos/stt_service.proto";

    tonic_prost_build::configure()
        .build_server(false)
        .compile_protos(&[proto_file], &["protos"])
        .unwrap_or_else(|e| panic!("protobuf compile error: {}", e));

    println!("cargo:rerun-if-changed={}", proto_file);
}