robin/src-tauri/tauri.conf.json
pyr0ball f0269c62a5 fix(build): add reqwest, fix exhaustive match, tauri deprecation, Cargo.lock
- Add reqwest 0.12 (json + stream features) — was missing from Cargo.toml
  causing chat_stream to fail to compile
- Add Android/IpadOs arms to SourceOs match in chat command
- Add tauri::Manager import to notify.rs (needed for .state())
- Replace deprecated menu_on_left_click with show_menu_on_left_click
- Remove desktopTemplate from tauri.conf.json (not in tauri-utils 2.9.2 schema)
- Commit Cargo.lock so cross-machine builds pin identical crate versions

All 42 unit tests pass on Linux Mint 22.3 (Muninn).
2026-05-20 08:32:39 -07:00

53 lines
1.2 KiB
JSON

{
"$schema": "https://schema.tauri.app/config/2",
"productName": "Robin",
"version": "0.1.0",
"identifier": "tech.circuitforge.robin",
"build": {
"frontendDist": "../dist",
"devUrl": "http://localhost:1420",
"beforeDevCommand": "npm run dev",
"beforeBuildCommand": "npm run build"
},
"app": {
"windows": [
{
"label": "chat",
"title": "Robin",
"width": 420,
"height": 600,
"resizable": true,
"fullscreen": false,
"visible": false,
"decorations": true,
"alwaysOnTop": false,
"skipTaskbar": true
}
],
"trayIcon": {
"id": "robin-tray",
"iconPath": "icons/32x32.png",
"iconAsTemplate": false,
"menuOnLeftClick": false,
"tooltip": "Robin"
},
"security": {
"csp": "default-src 'self'; connect-src http://localhost:* ipc: asset:"
}
},
"bundle": {
"active": true,
"targets": ["deb", "rpm", "appimage"],
"resources": {
"patterns/*": "patterns/"
},
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
],
"linux": {}
}
}