skippy-server 0.76.1

Embedded Skippy staged runtime server
mod decode;
mod draft;
mod hybrid;
mod pipeline;
mod stats;
mod verifier;
mod verify_window;

pub(super) use decode::{
    AdaptiveVerifyWindow, NativeMtpDecodeCounters, NativeMtpDecodeOptions, NativeMtpDecodeTelemetry,
};
pub(super) use draft::{NativeMtpDraft, NativeMtpDraftOrigin, PendingNativeMtpDraft};
pub(super) use hybrid::{
    BufferedCompositeProposal, CompositeProposalProvider, NativeMtpHybridProposal,
    NativeMtpVerifyWindowDecision, NgramSidecarController, classify_native_mtp_verify_window,
};
pub(super) use pipeline::{CompositeProposalPipeline, pipelined_target_commit_count};
pub(super) use stats::{NativeMtpStats, NativeMtpVerification};
pub(super) use verifier::NativeMtpVerifier;
pub(super) use verify_window::NativeMtpVerifyWindowControl;