Skip to content

Commit 9355dd8

Browse files
authored
Bump lz4_flex to prevent web viewer crashes
### Related * Closes RR-4067. * PSeitz/lz4_flex#205 ### What This bumps `lz4_flex` to `0.13.0` which includes the PR linked above. ### Testing 1. Open web viewer 2. Open DICOM recording 3. Menu -> Save recording... 4. Should not crash Source-Ref: b09682616fc15c6299351d3e31dc2d9a0b3c99ac
1 parent bde6870 commit 9355dd8

File tree

3 files changed

+17
-7
lines changed

3 files changed

+17
-7
lines changed

Cargo.lock

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6229,6 +6229,15 @@ dependencies = [
62296229
"twox-hash",
62306230
]
62316231

6232+
[[package]]
6233+
name = "lz4_flex"
6234+
version = "0.13.0"
6235+
source = "registry+https://github.com/rust-lang/crates.io-index"
6236+
checksum = "db9a0d582c2874f68138a16ce1867e0ffde6c0bb0a0df85e1f36d04146db488a"
6237+
dependencies = [
6238+
"twox-hash",
6239+
]
6240+
62326241
[[package]]
62336242
name = "macaw"
62346243
version = "0.30.0"
@@ -9207,7 +9216,7 @@ dependencies = [
92079216
"insta",
92089217
"itertools 0.14.0",
92099218
"js-sys",
9210-
"lz4_flex 0.12.0",
9219+
"lz4_flex 0.13.0",
92119220
"mimalloc",
92129221
"parking_lot",
92139222
"re_arrow_util",
@@ -9394,7 +9403,7 @@ dependencies = [
93949403
"arrow",
93959404
"http",
93969405
"jiff",
9397-
"lz4_flex 0.12.0",
9406+
"lz4_flex 0.13.0",
93989407
"pin-project-lite",
93999408
"prost",
94009409
"prost-types",

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,7 @@ libc = "0.2.182"
290290
linked-hash-map = { version = "0.5.6", default-features = false }
291291
log = "0.4.29"
292292
log-once = "0.4.1"
293-
lz4_flex = "0.12"
293+
lz4_flex = "0.13"
294294
macaw = "0.30.0"
295295
mcap = "0.24.0"
296296
memmap2 = "0.9.10"

deny.toml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,12 @@ all-features = true
3131
[advisories]
3232
version = 2
3333
ignore = [
34-
"RUSTSEC-2024-0436", # https://rustsec.org/advisories/RUSTSEC-2024-0436 - paste is unmaintained - https://github.com/dtolnay/paste
35-
"RUSTSEC-2024-0014", # https://rustsec.org/advisories/RUSTSEC-2024-0014 - generational-arena is unmaintained
36-
"RUSTSEC-2025-0141", # https://rustsec.org/advisories/RUSTSEC-2025-0141 - bincode is unmaintained - https://git.sr.ht/~stygianentity/bincode/tree/v3.0/item/README.md
34+
{ id = "RUSTSEC-2024-0436", reason = "paste is unmaintained https://github.com/dtolnay/paste" },
35+
{ id = "RUSTSEC-2024-0014", reason = "generational-arena is unmaintained" },
36+
{ id = "RUSTSEC-2025-0141", reason = "bincode is unmaintained https://git.sr.ht/~stygianentity/bincode/tree/v3.0/item/README.md" },
3737
# TODO(quickwit-oss/tantivy#2796): Remove when changes trickle down to `lance`.
38-
"RUSTSEC-2026-0002", # https://rustsec.org/advisories/RUSTSEC-2026-0002 - lance uses an old version of `lru`
38+
{ id = "RUSTSEC-2026-0002", reason = "lance uses an old version of `lru`" },
39+
{ id = "RUSTSEC-2026-0041", reason = "waiting for dependencies (puffin, arrow-ipc) to upgrade" },
3940
]
4041

4142

0 commit comments

Comments
 (0)