A fork of https://github.com/JonasKruckenberg/tauri-sys that builds for my choices of features
Find a file
2023-12-14 11:16:36 +01:00
.github Create spelling.yml 2023-12-14 11:15:17 +01:00
examples/test feat: update dependencies 2023-12-14 11:15:03 +01:00
src remove extra generic 2023-12-14 11:16:36 +01:00
tauri@f9c97b7e5b feat: update dependencies 2023-12-14 11:15:03 +01:00
tests expand tests 2022-11-01 17:31:50 +01:00
.gitignore update Tauri to v1.2.4 2023-02-09 11:11:32 +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 feat: update dependencies 2023-12-14 11:15:03 +01:00
Cargo.toml feat: update dependencies 2023-12-14 11:15:03 +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 remove build script 2022-11-13 21:05:51 +01:00
pnpm-lock.yaml feat: update dependencies 2023-12-14 11:15:03 +01:00
README.md Implemented fs module (#19) 2023-09-10 09:24:27 +02:00
renovate.json5 add renovate config 2023-12-14 11:15:25 +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" }

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.
  • app: Enables the app module.
  • clipboard: Enables the clipboard module.
  • dialog: Enables the dialog module.
  • event: Enables the event module.
  • fs: Enables the fs module.
  • mocks: Enables the mocks module.
  • tauri: Enables the tauri module.

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
  • cli
  • clipboard
  • dialog
  • event
  • fs
  • global_shortcut
  • http
  • mocks
  • notification
  • os
  • path
  • process
  • shell
  • tauri
  • updater
  • window

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.