Skip to content

Commit

Permalink
feat: use async in most of commands
Browse files Browse the repository at this point in the history
  • Loading branch information
Drevoed authored and drevoed committed Nov 27, 2022
1 parent 6bfa148 commit ab0c531
Show file tree
Hide file tree
Showing 8 changed files with 530 additions and 272 deletions.
205 changes: 205 additions & 0 deletions src-tauri/Cargo.lock

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

6 changes: 5 additions & 1 deletion src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ hudsucker = "0.18.0"
tracing = "0.1.37"
tokio-rustls = "0.23.4"
tokio-tungstenite = "0.17.2"
tokio = { version = "1.21.2", features = ["signal", "macros", "rt-multi-thread"] }
tokio = { version = "1.21.2", features = ["signal", "macros", "rt-multi-thread", "io-std", "fs"] }
rustls-pemfile = "1.0.1"
reqwest = { version = "0.11.13", features = ["stream"] }
futures-util = "0.3.25"
Expand All @@ -64,6 +64,10 @@ file_diff = "1.0.0"
rust-ini = "0.18.0"
ctrlc = "3.2.3"
thiserror = "1.0.37"
dashmap = { version = "5.4.0", features = ["serde"] }
tokio-util = "0.7.4"
async_zip = "0.0.9"
sanitize-filename = "0.4.0"

[features]
# by default Tauri runs in production mode
Expand Down
Loading

0 comments on commit ab0c531

Please sign in to comment.