A fork of https://github.com/JonasKruckenberg/tauri-sys that builds for my choices of features
Find a file
Bianca Fürstenau 1cf83b65df Make it build
2025-03-04 15:45:51 +01:00
.github chore(deps): update actions/deploy-pages action to v3 (#39) 2023-12-14 14:02:40 +01:00
examples Make it build 2025-03-04 15:45:51 +01:00
src Make it build 2025-03-04 15:45:51 +01:00
tauri@f9c97b7e5b feat: update dependencies 2023-12-14 11:15:03 +01:00
tests Fixed bug in tests, unwrapping version result. 2024-03-26 14:36:26 +01:00
.gitignore fix typos 2023-12-14 13:59:28 +01:00
.gitmodules initial commit 2022-11-01 15:19:25 +01:00
.nojekyll Create .nojekyll 2022-11-19 13:15:53 +01:00
Cargo.lock Make it build 2025-03-04 15:45:51 +01:00
Cargo.toml Make it build 2025-03-04 15:45:51 +01:00
LICENSE_APACHE-2.0 add correct licenses 2022-11-01 15:26:42 +01:00
LICENSE_MIT add correct licenses 2022-11-01 15:26:42 +01:00
package.json chore(deps): update dependency esbuild to ^0.19.0 (#34) 2023-12-14 14:02:10 +01:00
pnpm-lock.yaml chore(deps): update dependency esbuild to ^0.19.0 (#34) 2023-12-14 14:02:10 +01:00
README.md Added menu functionality. (#58) 2024-08-02 15:31:56 +02:00
renovate.json5 Update renovate.json5 2023-12-14 14:07:59 +01:00
typos.toml fix typos 2023-12-14 13:59:28 +01:00

tauri-sys

Raw bindings to the Tauri API for projects using wasm-bindgen

Documentation master MIT licensed

Installation

This crate is not yet published to crates.io, so you need to use it from git. You also need a global installation of esbuild.

tauri-sys = { git = "https://github.com/JonasKruckenberg/tauri-sys" } // tauri v1 api, main repo
// OR
tauri-sys = { git = "https://github.com/JonasKruckenberg/tauri-sys", branch = "v2" } // tauri v2 api

Usage

use serde::{Deserialize, Serialize};
use tauri_sys::tauri;

#[derive(Serialize, Deserialize)]
struct GreetArgs<'a> {
    name: &'a str,
}

fn main() {
    wasm_bindgen_futures::spawn_local(async move {
        let new_msg: String = tauri::invoke("greet", &GreetArgs { name: &name.get() }).await.unwrap();

        println!("{}", new_msg);
    });
}

Features

All modules are gated by accordingly named Cargo features. It is recommended you keep this synced with the features enabled in your Tauri Allowlist but no automated tool for this exists (yet).

  • all: Enables all modules.
  • core: Enables the core module. (~70% implmented)
  • event: Enables the event module.
  • menu: Enables the menu module. (~20% implemented)
  • window: Enables the windows module. (~20% implemented)

Are we Tauri yet?

These API bindings are not completely on-par with @tauri-apps/api yet, but here is the current status-quo:

  • app
  • core (partial implementation)
  • dpi
  • event
  • image
  • menu (partial implementation)
  • mocks
  • path
  • tray
  • webview
  • webviewWindow
  • window (partial implementation)

The current API also very closely mirrors the JS API even though that might not be the most ergonomic choice, ideas for improving the API with quality-of-life features beyond the regular JS API interface are very welcome.

Examples

The [examples/leptos] crate provides examples of how to use most of the implemented functionality.