Skip to content
5 changes: 4 additions & 1 deletion Cargo.lock
Original file line number Diff line number Diff line change
Expand Up @@ -9073,11 +9073,13 @@ dependencies = [
"bytes",
"criterion",
"ehttp",
"insta",
"itertools 0.14.0",
"js-sys",
"lz4_flex 0.12.0",
"mimalloc",
"parking_lot",
"re_arrow_util",
"re_build_info",
"re_chunk",
"re_log",
Expand All @@ -9088,6 +9090,8 @@ dependencies = [
"re_span",
"re_tracing",
"re_types",
"re_types_core",
"sha2",
"similar-asserts",
"thiserror 2.0.17",
"tokio",
Expand Down Expand Up @@ -9623,7 +9627,6 @@ dependencies = [
"re_tuid",
"re_types_core",
"serde",
"sha2",
"tempfile",
"thiserror 2.0.17",
"tokio",
Expand Down
4 changes: 4 additions & 0 deletions crates/store/re_log_encoding/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ stream_from_http = [
[dependencies]

# Rerun:
re_arrow_util.workspace = true
re_build_info.workspace = true
re_chunk.workspace = true
re_log_types.workspace = true
Expand All @@ -51,12 +52,14 @@ re_smart_channel.workspace = true
re_sorbet.workspace = true
re_span.workspace = true
re_tracing.workspace = true
re_types_core.workspace = true

# External:
arrow = { workspace = true, features = ["ipc"] }
itertools.workspace = true
lz4_flex = { workspace = true }
parking_lot.workspace = true
sha2.workspace = true
thiserror.workspace = true
tracing.workspace = true
xxhash-rust.workspace = true
Expand All @@ -79,6 +82,7 @@ web-sys = { workspace = true, optional = true, features = ["Window", "MessageEve
re_types.workspace = true

criterion.workspace = true
insta.workspace = true
mimalloc.workspace = true
similar-asserts.workspace = true

Expand Down
4 changes: 3 additions & 1 deletion crates/store/re_log_encoding/src/rrd/encoder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,9 @@ impl FooterState {

#[expect(clippy::unnecessary_wraps, clippy::unused_self)] // won't stay for long
fn finish(self) -> Result<crate::RrdFooter, EncodeError> {
Ok(crate::RrdFooter {})
Ok(crate::RrdFooter {
manifests: Default::default(),
})
}
}

Expand Down
Loading
Loading