From 22608d7420678f7f5db231cb8ba8aa4ff623c42b Mon Sep 17 00:00:00 2001 From: Andrzej Janik Date: Mon, 23 Jun 2025 18:04:08 -0700 Subject: [PATCH] Bump dependencies (#392) zip 2.6.1 was yanked and microlp 2.10 has a major bug --- Cargo.lock | 15 ++++----------- ptx/Cargo.toml | 2 +- xtask/Cargo.toml | 2 +- 3 files changed, 6 insertions(+), 13 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 7b7948b..4441417 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -300,12 +300,6 @@ dependencies = [ "cfg-if", ] -[[package]] -name = "crossbeam-utils" -version = "0.8.21" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28" - [[package]] name = "cuda_base" version = "0.0.0" @@ -780,9 +774,9 @@ dependencies = [ [[package]] name = "microlp" -version = "0.2.10" +version = "0.2.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "edaa5264bc1f7668bc12e10757f8f529a526656c796cc2106cf2be10c5b8d483" +checksum = "51d1790c73b93164ff65868f63164497cb32339458a9297e17e212d91df62258" dependencies = [ "log", "sprs", @@ -1737,13 +1731,12 @@ checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049" [[package]] name = "zip" -version = "2.6.1" +version = "4.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1dcb24d0152526ae49b9b96c1dcf71850ca1e0b882e4e28ed898a93c41334744" +checksum = "95ab361742de920c5535880f89bbd611ee62002bf11341d16a5f057bb8ba6899" dependencies = [ "arbitrary", "crc32fast", - "crossbeam-utils", "flate2", "indexmap", "memchr", diff --git a/ptx/Cargo.toml b/ptx/Cargo.toml index c22ae1b..8e98a01 100644 --- a/ptx/Cargo.toml +++ b/ptx/Cargo.toml @@ -18,7 +18,7 @@ rustc-hash = "2.0.0" strum = "0.26" strum_macros = "0.26" petgraph = "0.7.1" -microlp = "0.2.10" +microlp = "0.2.11" int-enum = "1.1" unwrap_or = "1.0.1" diff --git a/xtask/Cargo.toml b/xtask/Cargo.toml index 24da039..cebc898 100644 --- a/xtask/Cargo.toml +++ b/xtask/Cargo.toml @@ -15,5 +15,5 @@ flate2 = { version = "1.1.1", features = ["zlib-rs"], default-features = false } tar = "0.4.44" [target.'cfg(windows)'.dependencies] -zip = { version = "2.6.1", features = ["deflate", "time"], default-features = false } +zip = { version = "4.2.0", features = ["deflate", "time"], default-features = false } time = "0.3.41"