- 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).
37 lines
972 B
TOML
37 lines
972 B
TOML
[package]
|
|
name = "robin"
|
|
version = "0.1.0"
|
|
description = "Robin — Linux migration companion for Windows and macOS switchers"
|
|
authors = ["Circuit Forge LLC"]
|
|
license = "BUSL-1.1"
|
|
repository = "https://git.opensourcesolarpunk.com/Circuit-Forge/robin"
|
|
edition = "2021"
|
|
rust-version = "1.77.2"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[lib]
|
|
name = "robin_lib"
|
|
crate-type = ["staticlib", "cdylib", "rlib"]
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "2.6.2" }
|
|
|
|
[dependencies]
|
|
serde_json = "1.0"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
log = "0.4"
|
|
anyhow = "1.0"
|
|
tokio = { version = "1", features = ["full"] }
|
|
toml = "0.8"
|
|
notify = "8"
|
|
dirs = "6"
|
|
tauri = { version = "2.11.2", features = ["tray-icon"] }
|
|
tauri-plugin-log = "2"
|
|
tauri-plugin-notification = "2"
|
|
tauri-plugin-shell = "2"
|
|
tauri-plugin-fs = "2"
|
|
reqwest = { version = "0.12", features = ["json", "stream"] }
|
|
|
|
[dev-dependencies]
|
|
tempfile = "3"
|