lance-file 10.0.0

Utilities for the Lance file format
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// SPDX-License-Identifier: Apache-2.0
// SPDX-FileCopyrightText: Copyright The Lance Authors

//! Lance v1 file implementation.
//!
//! This module is the canonical home of the v1 reader, writer, metadata, and
//! page-table grammar. V1 accepts footer versions `(0, 0)` through `(0, 2)` and
//! writes the `(0, 2)` identity used by [`writer::FileWriter`].

pub mod encoding;
pub mod format;
pub mod page_table;
pub mod reader;
pub mod writer;