proto_rust 0.10.1

Rust support for proto.
Documentation
1
2
3
4
5
6
7
8
9
10
use crate::RustLanguage;
use proto_core::{async_trait, ProtoError, Shimable};

#[async_trait]
impl Shimable<'_> for RustLanguage {
    // Don't create shims and rely on binaries found in `~/.cargo/bin`.
    async fn create_shims(&mut self, _find_only: bool) -> Result<(), ProtoError> {
        Ok(())
    }
}