fix(deps): update rust crate zip to v2 (#1427)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
pull/1434/head
renovate[bot] 1 year ago committed by GitHub
parent 04ce9c4f6c
commit 1578970f81
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

31
Cargo.lock generated

@ -3545,7 +3545,7 @@ dependencies = [
"bitflags 1.3.2",
"jni-sys",
"ndk-sys",
"num_enum 0.5.11",
"num_enum",
"raw-window-handle 0.5.2",
"thiserror",
]
@ -3724,16 +3724,7 @@ version = "0.5.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1f646caf906c20226733ed5b1374287eb97e3c2a5c227ce668c1f2ce20ae57c9"
dependencies = [
"num_enum_derive 0.5.11",
]
[[package]]
name = "num_enum"
version = "0.7.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "02339744ee7253741199f897151b38e72257d13802d4ee837285cc2990a90845"
dependencies = [
"num_enum_derive 0.7.2",
"num_enum_derive",
]
[[package]]
@ -3748,18 +3739,6 @@ dependencies = [
"syn 1.0.109",
]
[[package]]
name = "num_enum_derive"
version = "0.7.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "681030a937600a36906c185595136d26abfebb4aa9c65701cefcaf8578bb982b"
dependencies = [
"proc-macro-crate 2.0.2",
"proc-macro2",
"quote",
"syn 2.0.66",
]
[[package]]
name = "num_threads"
version = "0.1.7"
@ -8398,16 +8377,16 @@ dependencies = [
[[package]]
name = "zip"
version = "1.1.4"
version = "2.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9cc23c04387f4da0374be4533ad1208cbb091d5c11d070dfef13676ad6497164"
checksum = "098d5d7737fb0b70814faa73c17df84f047d38dd31d13bbf2ec3fb354b5abf45"
dependencies = [
"arbitrary",
"crc32fast",
"crossbeam-utils",
"displaydoc",
"indexmap 2.2.6",
"num_enum 0.7.2",
"memchr",
"thiserror",
]

@ -34,7 +34,7 @@ tempfile = "3"
infer = "0.15"
[target."cfg(target_os = \"windows\")".dependencies]
zip = { version = "1", default-features = false, optional = true }
zip = { version = "2", default-features = false, optional = true }
windows-sys = { version = "0.52.0", features = [ "Win32_Foundation", "Win32_UI_WindowsAndMessaging" ] }
[target."cfg(target_os = \"linux\")".dependencies]

Loading…
Cancel
Save