Replies: 1 comment 1 reply
-
I typically keep core crates completely uncoupled from tauri crates so i can use them in non-tauri apps without pulling in so many dependencies. I don't think i can really offer any suggestions especially without further info i guess, just wanted to say what i said above. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I want to separate my tauri app into different crates like: core, to allow user to run the app as server headless, but the core is deeply integrated with tauri app_handle persisted state (shared_state.rs)
The core can run itself without tauri state, but if I want to still integrate it with frontend I must somehow persist some things. I don't want to use memory for that not Files or SQLite.
The question is: how? I'm quite new to rust.
Beta Was this translation helpful? Give feedback.
All reactions