From a86542577f1b2088871c88d415695e6af6d91c68 Mon Sep 17 00:00:00 2001 From: Shun Sakai Date: Sat, 2 Dec 2023 15:24:39 +0900 Subject: [PATCH] Bump MSRV to 1.70.0 --- .github/workflows/rust.yml | 2 +- Cargo.toml | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 1c89755..2b81a66 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -20,7 +20,7 @@ jobs: - windows-latest toolchain: - stable - - 1.67.0 # MSRV + - 1.70.0 # MSRV include: - os: macos-latest target: x86_64-apple-darwin diff --git a/Cargo.toml b/Cargo.toml index f45b272..6cfd80a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,7 +7,7 @@ license = "Apache-2.0" name = "sevenz-rust" readme = "README.md" repository = "https://github.com/dyz1990/sevenz-rust" -rust-version = "1.67.0" +rust-version = "1.70.0" version = "0.5.3" [lib] @@ -29,18 +29,18 @@ cbc = {version = "0.1", optional = true} crc = "3.0.1" filetime_creation = "0.1" lzma-rust = {path = "lzma-rust", default-features = false, version = "0.1.5"} -nt-time = "0.6.0" +nt-time = "0.6.4" rand = {version = "0.8", optional = true} sha2 = {version = "^0.10"} zstd = {version = "0.13.0", optional = true} [target.'cfg(target_arch = "wasm32")'.dependencies] -js-sys = "0.3.64" +js-sys = "0.3.66" wasm-bindgen = "0.2" [dev-dependencies] rand = {version = "0.8"} -tempfile = "3.8.0" +tempfile = "3.8.1" [[example]] name = "compress"