Skip to content

Commit 73267dc

Browse files
authored
fix(ci): downgrade string_cache, string_cache_codegen and openssl crates (#12613)
1 parent f72d0e1 commit 73267dc

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/covector-version-or-publish-v1.yml

+3
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,9 @@ jobs:
9494
cargo update -p ignore --precise 0.4.18
9595
cargo update -p tree_magic_mini --precise 3.0.3
9696
cargo update -p native-tls --precise 0.2.11
97+
cargo update -p string_cache --precise 0.8.7
98+
cargo update -p string_cache_codegen --precise 0.5.2
99+
cargo update -p openssl --precise 0.10.68
97100
98101
- name: install rust ${{ matrix.project.toolchain || matrix.platform.toolchain }}
99102
uses: dtolnay/rust-toolchain@master

core/tauri/src/updater/core.rs

-2
Original file line numberDiff line numberDiff line change
@@ -1104,8 +1104,6 @@ fn copy_files_and_run(
11041104
// └── ...
11051105
#[cfg(target_os = "macos")]
11061106
fn copy_files_and_run(bytes: &[u8], extract_path: &Path) -> Result {
1107-
let mut extracted_files: Vec<PathBuf> = Vec::new();
1108-
11091107
let archive = Cursor::new(bytes);
11101108

11111109
// extract the buffer to the tmp_dir

0 commit comments

Comments
 (0)