reduct-base 1.19.7

Base crate for ReductStore
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright 2021-2026 ReductSoftware UG
// Licensed under the Apache License, Version 2.0

pub mod v1;
pub use v1::{parse_batched_header, sort_headers_by_time, RecordHeader};

pub mod v2;
#[cfg(feature = "io")]
pub use v2::{build_label_delta, make_record_header_value};
pub use v2::{
    decode_entry_name, encode_entry_name, encode_label_name, make_batched_header_name,
    parse_batched_header_name, parse_batched_headers, sort_headers_by_entry_and_time,
    EntryRecordHeader, LabelIndex,
};