kanamaru 0.1.0

Build typed Tauri plugins with the power of Protobuf Buffers
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pub use crate::{
    ipc::{request::RawRequest, IpcMessage, IpcMessageBase},
    responder::{RPCType, Responder},
    Status, StreamingRequest, StreamingResponse, UnaryRequest, UnaryResponse,
};
pub use async_trait::async_trait;
pub use serde_json::to_value as to_json;
pub use std::marker::{PhantomData, Send, Sync};
pub use std::sync::Arc;
pub use tauri::{
    ipc::{InvokeError, InvokeResolver},
    Runtime, Webview,
};
pub use tokio::{select, spawn};
pub use tokio_stream;