]> git.ipfire.org Git - thirdparty/suricata.git/commitdiff
rust: update brotli crate to latest version
authorPhilippe Antoine <pantoine@oisf.net>
Tue, 3 Jun 2025 18:33:52 +0000 (20:33 +0200)
committerVictor Julien <victor@inliniac.net>
Wed, 4 Jun 2025 07:39:52 +0000 (09:39 +0200)
Ticket: 7735

New version has a fix for an integer underflow

rust/Cargo.lock.in
rust/Cargo.toml.in
rust/htp/Cargo.toml

index 34b29fc3610efab9e86c03a30cc08e149c1aecc2..7e161b64656c12a8ebb8a161912829508b3ab422 100644 (file)
@@ -156,9 +156,9 @@ dependencies = [
 
 [[package]]
 name = "brotli"
-version = "3.4.0"
+version = "8.0.1"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "516074a47ef4bce09577a3b379392300159ce5b1ba2e501ff1c819950066100f"
+checksum = "9991eea70ea4f293524138648e41ee89b0b2b12ddef3b255effa43c8056e0e0d"
 dependencies = [
  "alloc-no-stdlib",
  "alloc-stdlib",
@@ -167,9 +167,9 @@ dependencies = [
 
 [[package]]
 name = "brotli-decompressor"
-version = "2.5.1"
+version = "5.0.0"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "4e2e4afe60d7dd600fdd3de8d0f08c2b7ec039712e3b6137ff98b7004e82de4f"
+checksum = "874bb8112abecc98cbd6d81ea4fa7e94fb9449648c93cc89aa40c81c24d7de03"
 dependencies = [
  "alloc-no-stdlib",
  "alloc-stdlib",
index 8f03786ea8b40439338936b6daea5bb39c2994a6..de7191cfb25a9fee0db14086576d0a954a5c2f6e 100644 (file)
@@ -49,7 +49,7 @@ num-derive = "~0.4.2"
 num-traits = "~0.2.14"
 widestring = "~0.4.3"
 flate2 = { version = "~1.0.19", features = ["zlib"] }
-brotli = "~3.4.0"
+brotli = "~8.0.1"
 hkdf = "~0.12.3"
 aes = "~0.7.5"
 aes-gcm = "~0.9.4"
index 46b4c77784bfa14a09f6880cc522df0abe6591cc..4d3b4cdf1a8a1c06999347d1d30025a5901de8a9 100644 (file)
@@ -27,7 +27,7 @@ libc = "0.2"
 nom = "7.1.1"
 lzma-rs = { version = "0.2.0", features = ["stream"] }
 flate2 = { version = "~1.0.35", features = ["zlib-default"], default-features = false }
-brotli = "~3.4.0"
+brotli = "~8.0.1"
 lazy_static = "1.4.0"
 time = "=0.3.36"