tauri-plugin-conduit 0.2.0

tauri-plugin-conduit — Tauri v2 plugin for binary IPC over the conduit:// custom protocol.
Documentation
tauri-plugin-conduit-0.2.0 has been yanked.

tauri-plugin-conduit

Crates.io docs.rs CI License

Tauri v2 plugin for conduit -- binary IPC over the conduit:// custom protocol.

Part of the tauri-conduit workspace.

Usage

tauri::Builder::default()
    .plugin(
        tauri_plugin_conduit::init()
            .command("ping", |_| b"pong".to_vec())
            .channel("telemetry")
            .build()
    )
    .run(tauri::generate_context!())
    .unwrap();

Security

  • Per-launch 32-byte invoke key with constant-time validation
  • No network surface -- everything runs in-process
  • Integrates with Tauri's capability-based permission system

See the workspace README for full documentation, streaming examples, and benchmark numbers.

License

Licensed under either of MIT or Apache-2.0 at your option.