tauri-plugin-syncular 0.5.0

A native syncular client inside the Tauri process, exposed to the webview as commands + events (consumes the Rust client core directly — no FFI)
Documentation
1
2
3
4
5
6
7
8
9
10
//! Tauri v2 plugin build script: generates the permission scaffolding for the
//! commands the plugin exposes. `tauri-plugin` reads `permissions/` and
//! emits the autogenerated `allow-*`/`deny-*` permissions plus the `default`
//! permission set an app references in its capabilities.

const COMMANDS: &[&str] = &["syncular_command", "syncular_query", "syncular_set_headers"];

fn main() {
    tauri_plugin::Builder::new(COMMANDS).build();
}