tauri-plugin-rpstate 0.5.1

Tauri v2 plugin that exposes rpstate reactive persistent state to the frontend, with TypeScript codegen
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
const COMMANDS: &[&str] = &[
    "rpstate_get",
    "rpstate_set",
    "rpstate_subscribe",
    "rpstate_unsubscribe",
    "rpstate_get_prefix",
    "rpstate_flush",
];

fn main() {
    tauri_plugin::Builder::new(COMMANDS).build();
}