Skip to content
This repository has been archived by the owner on Mar 29, 2024. It is now read-only.

Commit

Permalink
Add portapi support and multiple improvements to the tauri app
Browse files Browse the repository at this point in the history
  • Loading branch information
ppacher committed Jan 23, 2024
1 parent 71957c9 commit 2ba1e89
Show file tree
Hide file tree
Showing 9 changed files with 1,031 additions and 69 deletions.
165 changes: 157 additions & 8 deletions tauri-app/src-tauri/Cargo.lock

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

8 changes: 7 additions & 1 deletion tauri-app/src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ tauri-plugin-os = "2.0.0-alpha"
tauri-plugin-single-instance = "2.0.0-alpha"
tauri-plugin-cli = "2.0.0-alpha"
tauri-plugin-notification = "2.0.0-alpha"
futures-util = "0.3"

dirs = "1.0"
rust-ini = "0.20.0"
Expand All @@ -37,9 +38,14 @@ gdk-pixbuf = "0.18.3"
gdk-pixbuf-sys = "0.18.0"
uuid = "1.6.1"
lazy_static = "1.4.0"
tokio = "1.35.0"
tokio = { version = "1.35.0", features = ["macros"] }
cached = "0.46.1"
notify-rust = "4.10.0"
assert_matches = "1.5.0"
tokio-websockets = { version = "0.5.0", features = ["client", "ring", "rand"] }
sha = "1.0.3"
http = "1.0.0"
url = "2.5.0"

[features]
# this feature is used for production builds or when `devPath` points to the filesystem and the built-in dev server is disabled.
Expand Down
2 changes: 1 addition & 1 deletion tauri-app/src-tauri/src/common/mod.rs
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
pub mod xdg_desktop;
pub mod service_manager;
pub mod service_manager;
Loading

0 comments on commit 2ba1e89

Please sign in to comment.