znippy-common 0.9.14

Core logic and data structures for Znippy, a parallel chunked compression system.
Documentation
//! Handlers compiled into the host binary — the in-common (tier A) half of the
//! plugin tree. Each module here needs nothing but `std`, `arrow` and `crate::`;
//! the moment one needs a third-party parser, a decompressor, a network fetch,
//! its own crate-type or its own release cadence it becomes a `znippy-plugin-*`
//! crate under the repo-root `plugins/native/` instead (rule **P-5**,
//! `.nornir/plugins-design.md` §f3).
//!
//! `skeletons` holds the *stubs* for ecosystems nobody has written real parsing
//! for yet. They are native handlers too — they compile into the same binary and
//! answer `znippy handlers` — so they live here, not in a third place.
//!
//! These modules are re-exported one level up (`crate::plugins`), which is the
//! path published consumers use — see `super`'s docs.

pub mod cargo_native;
pub mod conda_native;
pub mod deb_native;
pub mod gem_native;
pub mod npm_native;
pub mod rpm_native;
pub mod skeletons;