···11-[package]
22-name = "miwiwi"
33-version = "0.1.0"
44-description = "A Tauri App"
55-authors = ["you"]
66-edition = "2021"
77-88-# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
99-1010-[lib]
1111-# The `_lib` suffix may seem redundant but it is necessary
1212-# to make the lib name unique and wouldn't conflict with the bin name.
1313-# This seems to be only an issue on Windows, see https://github.com/rust-lang/cargo/issues/8519
1414-name = "miwiwi_lib"
1515-crate-type = ["staticlib", "cdylib", "rlib"]
1616-1717-[build-dependencies]
1818-tauri-build = { version = "2", features = [] }
1919-2020-[dependencies]
2121-tauri = { version = "2", features = [] }
2222-tauri-plugin-opener = "2"
2323-serde = { version = "1", features = ["derive"] }
2424-serde_json = "1"
2525-11+[package]
22+name = "miwiwi"
33+version = "0.1.0"
44+description = "A Tauri App"
55+authors = ["you"]
66+edition = "2021"
77+88+# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
99+1010+[lib]
1111+# The `_lib` suffix may seem redundant but it is necessary
1212+# to make the lib name unique and wouldn't conflict with the bin name.
1313+# This seems to be only an issue on Windows, see https://github.com/rust-lang/cargo/issues/8519
1414+name = "miwiwi_lib"
1515+crate-type = ["staticlib", "cdylib", "rlib"]
1616+1717+[build-dependencies]
1818+tauri-build = { version = "2", features = [] }
1919+2020+[dependencies]
2121+tauri = { version = "2", features = [] }
2222+tauri-plugin-opener = "2"
2323+serde = { version = "1", features = ["derive"] }
2424+serde_json = "1"
2525+
···11+import "../app.css";
22+13// Tauri doesn't have a Node.js server to do proper SSR
24// so we use adapter-static with a fallback to index.html to put the site in SPA mode
35// See: https://svelte.dev/docs/kit/single-page-apps