`tracing_subscriber::fmt().try_init()` installs a global log implementation via the tracing-log shim. tauri-plugin-log then calls `log::set_logger()` which panics with "attempted to set a logger after the logging system was already initialized". The plugin was never wired in JS code (no @tauri-apps/plugin-log import) — backend logging via tracing is sufficient. Drop: - tauri-plugin-log dep + plugin registration - log:default capability permission - @tauri-apps/plugin-log JS dep Verified: cargo check is clean, app starts past the panic.
39 lines
971 B
JSON
39 lines
971 B
JSON
{
|
|
"name": "mycellium-ui",
|
|
"private": true,
|
|
"version": "0.1.0",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "vue-tsc --noEmit && vite build",
|
|
"preview": "vite preview",
|
|
"typecheck": "vue-tsc --noEmit",
|
|
"tauri": "tauri"
|
|
},
|
|
"dependencies": {
|
|
"@tauri-apps/api": "^2.2.0",
|
|
"@tauri-apps/plugin-dialog": "^2.2.0",
|
|
"@tauri-apps/plugin-shell": "^2.2.0",
|
|
"@tauri-apps/plugin-store": "^2.2.0",
|
|
"class-variance-authority": "^0.7.1",
|
|
"clsx": "^2.1.1",
|
|
"lucide-vue-next": "^0.469.0",
|
|
"pinia": "^2.3.0",
|
|
"radix-vue": "^1.9.11",
|
|
"tailwind-merge": "^2.6.0",
|
|
"vue": "^3.5.13",
|
|
"vue-router": "^4.5.0"
|
|
},
|
|
"devDependencies": {
|
|
"@tauri-apps/cli": "^2.2.0",
|
|
"@types/node": "^22.10.5",
|
|
"@vitejs/plugin-vue": "^5.2.1",
|
|
"autoprefixer": "^10.4.20",
|
|
"postcss": "^8.4.49",
|
|
"tailwindcss": "^3.4.17",
|
|
"typescript": "~5.7.2",
|
|
"vite": "^6.0.7",
|
|
"vue-tsc": "^2.2.0"
|
|
}
|
|
}
|