Skip to content

Releases: userFRM/tauri-conduit

v2.1.1

18 Mar 13:13
64c3724

Choose a tag to compare

What's Changed

  • Fix npm packaging, TS test flow, and conduit subscribe ergonomics by @userFRM in #18
  • Refine README positioning by @userFRM in #19
  • Release v2.1.1 by @userFRM in #20

Full Changelog: v2.1.0...v2.1.1

v2.1.0

17 Mar 18:23

Choose a tag to compare

What's Changed

  • perf: 10 constraint-anchored optimizations by @userFRM in #12

Full Changelog: v2.0.0...v2.1.0

v2.0.0

10 Mar 14:25

Choose a tag to compare

What's Changed

  • v2.0.0: #[conduit::command] with full #[tauri::command] parity by @userFRM in #1

New Contributors

Full Changelog: v1.0.0...v2.0.0

What's Changed

  • v2.0.0: #[conduit::command] with full #[tauri::command] parity by @userFRM in #1

New Contributors

Full Changelog: v1.0.0...v2.0.0

What's Changed

  • v2.0.0: #[conduit::command] with full #[tauri::command] parity by @userFRM in #1

New Contributors

Full Changelog: v1.0.0...v2.0.0

What's Changed

  • v2.0.0: #[conduit::command] with full #[tauri::command] parity by @userFRM in #1

New Contributors

Full Changelog: v1.0.0...v2.0.0

v1.0.0

09 Mar 14:02

Choose a tag to compare

tauri-conduit v1.0.0 — Production Release

A faster drop-in replacement for Tauri's invoke().

Highlights

  • Drop-in replacement — change one import, get 2.4x faster IPC through an in-process custom protocol
  • Binary mode — up to 2400x faster on large payloads with invokeBinary()
  • Built-in streaming — push/subscribe pattern with ring buffers, no polling
  • Secure by default — per-launch auth key, panic isolation, Tauri permission integration

Crates

Crate Version Description
tauri-plugin-conduit 1.0.0 Tauri v2 plugin
conduit-core 1.0.0 Core library (codec, router, ring buffer)
conduit-derive 1.0.0 Derive macros (Encode, Decode)

TypeScript

npm install tauri-plugin-conduit

Quick start

- import { invoke } from '@tauri-apps/api/core';
+ import { invoke } from 'tauri-plugin-conduit';

See the README for full documentation.

Full Changelog: https://github.com/userFRM/tauri-conduit/commits/v1.0.0