From 9350abae2c76c89f37ed5f0eeb20ce317f128ee3 Mon Sep 17 00:00:00 2001 From: Joel Natividad <1980690+jqnatividad@users.noreply.github.com> Date: Wed, 29 Nov 2023 03:18:25 -0500 Subject: [PATCH 1/2] bump quick-xml from 0.30 to 0.31 --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index f5c4e176..e83b4bdc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -20,7 +20,7 @@ encoding_rs = "0.8" log = "0.4" once_cell = { version = "1.18", optional = true } serde = "1.0" -quick-xml = { version = "0.30", features = ["encoding"] } +quick-xml = { version = "0.31", features = ["encoding"] } zip = { version = "0.6", default-features = false, features = ["deflate"] } chrono = { version = "0.4", features = [ "serde", From 43bf520f10ed4173e1faacd929135b70788dca9f Mon Sep 17 00:00:00 2001 From: Joel Natividad <1980690+jqnatividad@users.noreply.github.com> Date: Wed, 29 Nov 2023 03:29:07 -0500 Subject: [PATCH 2/2] Bump MSRV from 1.63 to 1.65 as regex 1.10.2 requires it https://github.com/tafia/calamine/actions/runs/7029789349/job/19128066002?pr=377 --- .github/workflows/rust.yml | 2 +- Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index f3f4b781..02f5c677 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -8,7 +8,7 @@ jobs: strategy: matrix: toolchain: - - "1.63" # MSRV + - "1.65" # MSRV - stable - beta - nightly diff --git a/Cargo.toml b/Cargo.toml index e83b4bdc..bc9bcbb3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,7 +11,7 @@ keywords = ["excel", "ods", "xls", "xlsx", "xlsb"] categories = ["encoding", "parsing", "text-processing"] exclude = ["tests/**/*"] edition = "2021" -rust-version = "1.63" +rust-version = "1.65" [dependencies] byteorder = "1.4"