keydous-bridge 0.1.2

Linux bridge for configuring Keydous keyboards with the official web driver
1
2
3
4
5
6
7
8
fn main() -> Result<(), Box<dyn std::error::Error>> {
    let protoc = protoc_bin_vendored::protoc_bin_path()?;
    unsafe {
        std::env::set_var("PROTOC", protoc);
    }
    tonic_prost_build::compile_protos("proto/driver.proto")?;
    Ok(())
}