Skip to content

Commit

Permalink
Update tauri dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
krabiworld committed Jan 2, 2025
1 parent 6bcd31a commit 7ffe3ad
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 27 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
---
name: Deploy Frontend

on:
push:
branches: ["main", "dev"]
branches:
- main
- dev

jobs:
build:
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/desktop.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
name: 'Build Desktop'
name: Build Desktop

on:
workflow_dispatch:
push:
branches:
- main
- dev

jobs:
publish-tauri:
Expand Down
28 changes: 14 additions & 14 deletions src-tauri/Cargo.lock

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

18 changes: 9 additions & 9 deletions src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[package]
name = "app"
name = "foxogram"
version = "0.1.0"
description = "A Tauri App"
authors = ["you"]
license = ""
repository = ""
description = "Foxogram Desktop"
authors = ["FoxoCorp"]
license = "MIT"
repository = "https://github.com/foxocorp/foxogram-frontend"
edition = "2021"
rust-version = "1.77.2"
rust-version = "1.83.0"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand All @@ -15,11 +15,11 @@ name = "app_lib"
crate-type = ["staticlib", "cdylib", "rlib"]

[build-dependencies]
tauri-build = { version = "2.0.2", features = [] }
tauri-build = { version = "2.0.3", features = [] }

[dependencies]
serde_json = "1.0"
serde = { version = "1.0", features = ["derive"] }
log = "0.4"
tauri = { version = "2.1.0", features = [] }
tauri-plugin-log = "2.0.0-rc"
tauri = { version = "2.1.1", features = [] }
tauri-plugin-log = "2.2.0"

0 comments on commit 7ffe3ad

Please sign in to comment.