vortex 0.81.0

Vortex file format with all builtin codecs and a sampling compressor.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// SPDX-License-Identifier: Apache-2.0
// SPDX-FileCopyrightText: Copyright the Vortex contributors

//! The `unstable` edition family: opt-in encodings without a frozen compatibility guarantee.
//!
//! One module per draft edition, each declaring the encodings that join the family at it.
//! Members of earlier editions are inherited and never restated.

pub mod v2025_05;
pub mod v2026_02;
pub mod v2026_04;
pub mod v2026_06;

pub use v2025_05::UNSTABLE_2025_05_0;
pub use v2026_02::UNSTABLE_2026_02_0;
pub use v2026_04::UNSTABLE_2026_04_0;
pub use v2026_06::UNSTABLE_2026_06_0;