liboxen 0.53.0

Oxen is a fast data version control system, built with machine learning training data in mind. Designed to handle terabytes of data with ease, using a workflow similar to git. Version both structured and unstructured data of any modality: text, images, video, audio, CSV, Parquet, JSONL, model checkpoints, and more. liboxen is the embeddable core library behind the oxen CLI and server, which power fine tuning and inference pipelines for multimodal LLMs, image models, and video models on Oxen.ai.
//! Core logic for the latest oxen on-disk format.
//!

pub mod add;
pub mod branches;
pub mod clean;
pub mod clone;
pub mod commits;
pub mod data_frames;
pub mod diff;
pub mod download;
pub mod entries;
pub mod fetch;
pub mod index;
pub mod init;
pub mod merge;
pub mod merge_marker;
pub mod metadata;
pub mod model;
pub mod prune;
pub mod pull;
pub mod push;
pub mod resource;
pub mod restore;
pub mod rm;
pub mod stats;
pub mod status;
pub mod workspaces;

pub use add::add;
pub use commits::commit;
pub use init::{init, init_with_version_and_storage_config, init_with_version_default};
pub use pull::{pull, pull_all, pull_remote_branch};
pub use rm::rm;