From 86cafaa55d0a0d0b4a18b1ed02b5a445fe093145 Mon Sep 17 00:00:00 2001 From: Joel Natividad <1980690+jqnatividad@users.noreply.github.com> Date: Tue, 12 Dec 2023 11:33:39 -0500 Subject: [PATCH] `excel`: bump calamine from 0.22 to 0.23 --- Cargo.lock | 10 +++++----- Cargo.toml | 2 +- tests/test_excel.rs | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 5cc4d74fd..dfa8fbe11 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -869,9 +869,9 @@ checksum = "3a4f925191b4367301851c6d99b09890311d74b0d43f274c0b34c86d308a3663" [[package]] name = "calamine" -version = "0.22.1" +version = "0.23.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fe0ba51a659bb6c8bffd6f7c1c5ffafcafa0c97e4769411d841c3cc5c154ab47" +checksum = "cab44c09d2f3dae84fdb1784ee6b96eddb6595c1139b8df9d3d6ba6ab25dabe2" dependencies = [ "byteorder", "chrono", @@ -879,7 +879,7 @@ dependencies = [ "encoding_rs", "log", "once_cell", - "quick-xml 0.30.0", + "quick-xml 0.31.0", "serde", "zip", ] @@ -4172,9 +4172,9 @@ dependencies = [ [[package]] name = "quick-xml" -version = "0.30.0" +version = "0.31.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eff6510e86862b57b210fd8cbe8ed3f0d7d600b9c2863cd4549a2e033c66e956" +checksum = "1004a344b30a54e2ee58d66a71b32d2db2feb0a31f9a2d302bf0536f15de2a33" dependencies = [ "encoding_rs", "memchr", diff --git a/Cargo.toml b/Cargo.toml index 5ce751c64..01332898f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -78,7 +78,7 @@ cached = { version = "0.46", default-features = false, features = [ "proc_macro", "redis_ahash", ], optional = true } -calamine = { version = "0.22", features = ["dates"] } +calamine = { version = "0.23", features = ["dates"] } censor = { version = "0.3", optional = true } chrono = { version = "0.4", default-features = false } console = { version = "0.15", optional = true } diff --git a/tests/test_excel.rs b/tests/test_excel.rs index 8d6805586..f6e72edbc 100644 --- a/tests/test_excel.rs +++ b/tests/test_excel.rs @@ -49,7 +49,7 @@ fn excel_open_xlsx_readpassword() { let got = wrk.output_stderr(&mut cmd); assert!(got - .matches("password-protected-password123.xlsx may be a password-protected workbook:") + .matches("Cannot open workbook: Xlsx error: Workbook is password protected.") .min() .is_some()); wrk.assert_err(&mut cmd);