Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
16 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/dependabot-auto-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
steps:
- name: Dependabot metadata
id: metadata
uses: dependabot/fetch-metadata@v2
uses: dependabot/fetch-metadata@v3
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"

Expand Down
97 changes: 60 additions & 37 deletions src-tauri/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ phf_codegen = "0.11"
tauri = { version = "2.9.4", features = ["protocol-asset", "tray-icon", "image-png"] }
tauri-plugin-shell = { git = "https://github.com/tauri-apps/plugins-workspace", branch = "v2" }
tauri-plugin-opener = { git = "https://github.com/tauri-apps/plugins-workspace", branch = "v2" }
tauri-plugin-dialog = "2.2.0"
tauri-plugin-dialog = "2.7.0"
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.145"
tokio = { version = "1.48.0", features = ["full"] }
tokio = { version = "1.51.0", features = ["full"] }
tokio-tungstenite = { version = "0.27.0", features = ["native-tls"] }
reqwest = { version = "0.12.24", features = ["json", "gzip", "cookies", "multipart"] }
cookie_store = "0.22.0"
Expand All @@ -36,14 +36,14 @@ confy = "2.0.0"
warp = { version = "0.4.2", features = ["server", "websocket"] }
futures = "0.3"
futures-util = { version = "0.3.31", features = ["sink"] }
rand = "0.9.2"
rand = "0.10.0"
keyring = "3.6.3" # For secure token storage
url = "2.5.7"
sha2 = "0.10.9"
base64 = "0.22.1"
lazy_static = "1.5.0"
dirs = "6.0.0"
tauri-plugin-http = "2.5.4"
tauri-plugin-http = "2.5.8"
regex = "1.12.2"
strsim = "0.11.1"
uuid = { version = "1.19.0", features = ["v4"] }
Expand All @@ -61,7 +61,7 @@ lru = "0.12"

log = "0.4"
env_logger = "0.11"
tauri-plugin-deep-link = "2.4.7"
tauri-plugin-deep-link = "2.4.8"
tauri-plugin-clipboard-manager = "2.3.2"


Expand Down
Loading
Loading