From 51c5be76ec1e04cdac3d1ae7db9c3e5b0ae12fa2 Mon Sep 17 00:00:00 2001 From: Chris Lu Date: Tue, 17 Mar 2026 01:41:41 -0700 Subject: [PATCH] Make 5bytes the default feature for idx entry compatibility --- seaweed-volume/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/seaweed-volume/Cargo.toml b/seaweed-volume/Cargo.toml index dc84f65df..e4a7fd554 100644 --- a/seaweed-volume/Cargo.toml +++ b/seaweed-volume/Cargo.toml @@ -13,7 +13,7 @@ path = "src/main.rs" [features] # Match the default Go build: 4-byte offsets unless explicitly built with 5-byte support. -default = [] +default = ["5bytes"] # Enable 5-byte offset mode for 8TB max volume size (matches Go builds with -tags 5BytesOffset). # Without this feature, uses 4-byte offsets with 32GB max volume size. 5bytes = []