tauri-remote-ui 0.6.0

A Tauri plugin that exposes the application’s UI to a web browser, allowing full interaction while the native app continues running. This enables end-to-end UI testing using existing web-based testing tools without requiring modifications to the app itself.
1
2
3
4
5
6
7
8
9
10
// MIT License
// Copyright (c) 2025 DraviaVemal
// See LICENSE file in the root directory.

const COMMANDS: &[&str] = &[];

/// Entry point for the build script.
fn main() {
    tauri_plugin::Builder::new(COMMANDS).build();
}