Bump dependencies (#392)
Some checks are pending
ZLUDA / Build (Linux) (push) Waiting to run
ZLUDA / Build (Windows) (push) Waiting to run

zip 2.6.1 was yanked and microlp 2.10 has a major bug
This commit is contained in:
Andrzej Janik 2025-06-23 18:04:08 -07:00 committed by GitHub
commit 22608d7420
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 6 additions and 13 deletions

15
Cargo.lock generated
View file

@ -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",

View file

@ -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"

View file

@ -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"