Something running

This commit is contained in:
Bianca Fürstenau 2025-02-22 07:09:34 +01:00
parent e03a16d13e
commit 49a9810fd8
19 changed files with 173 additions and 132 deletions

View file

@ -34,10 +34,10 @@ crate-type = ["staticlib", "cdylib", "rlib"]
tauri-build = { version = "2", features = [] }
[dependencies]
leptos = { version = "^0.7", features = ["ssr"] }
tauri-sys = { git = "https://github.com/JonasKruckenberg/tauri-sys", features = ["tauri"] }
leptos = { version = "^0.7", features = ["csr"] }
tauri-sys = { path = "../tauri-sys", features = ["core"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_json = { version = "1" }
tauri = { version = "2", features = [], optional = true }
tauri-plugin-opener = { version = "2", optional = true }
@ -49,3 +49,4 @@ tokio = {version = "^1.43", optional = true}
curl = {version = "^0.4", optional = true}
openssl = {version = "^0.10", features = ["vendored"], optional = true}
ring-compat = {version = "^0.8", features = ["signature", "rand_core"], optional = true}
console_error_panic_hook = {version = "0.1.7"}