diff options
| author | 2026-01-15 16:53:02 +0800 | |
|---|---|---|
| committer | 2026-01-15 17:36:39 +0800 | |
| commit | 1c793387f285225c277a440a52552fc6f1735eeb (patch) | |
| tree | 3e66cd4a27109094b59ed655096fa399c909fd29 | |
| parent | dcdfdd3d172da666efc225301c2c55b359aa1776 (diff) | |
| download | DropOut-1c793387f285225c277a440a52552fc6f1735eeb.tar.gz DropOut-1c793387f285225c277a440a52552fc6f1735eeb.zip | |
chore: Update reqwest dependency to version 0.11 with additional multipart feature and add tauri-plugin-fs version 2.4.5 in Cargo.toml
| -rw-r--r-- | src-tauri/Cargo.toml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index efb14eb..0eb143c 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -13,7 +13,7 @@ toml = "0.5" log = "0.4" env_logger = "0.9" tokio = { version = "1.49.0", features = ["full"] } -reqwest = { version = "0.13.1", features = ["json", "blocking", "stream"] } +reqwest = { version = "0.11", features = ["json", "blocking", "stream", "multipart"] } serde_json = "1.0.149" tauri = { version = "2.9", features = [] } tauri-plugin-shell = "2.3" @@ -28,6 +28,7 @@ tar = "0.4" dirs = "5.0" serde_urlencoded = "0.7.1" tauri-plugin-dialog = "2.5.0" +tauri-plugin-fs = "2.4.5" [build-dependencies] tauri-build = { version = "2.0", features = [] } |