//! DROID manipulation adapter (Khazatsky et al., Stanford/TRI 2024).
//!
//! **Provenance.** Khazatsky et al., *"DROID: A Large-Scale In-the-Wild
//! Robot Manipulation Dataset"*, 2024. 76 000+ teleoperation
//! demonstrations collected across 18 institutions on real Franka
//! Emika Panda robots performing 350+ tasks.
//!
//! **Residual DSFB structures.** Per-timestep Euclidean norm of the
//! deviation of measured joint proprioception from the early-window
//! nominal across the 7-DoF Panda state.
//!
//! This adapter does not ship a Rust loader for DROID's RLDS/TFRecord
//! format — the preprocessor (`scripts/preprocess_datasets.py`)
//! consumes the raw format and emits `data/processed/droid.csv` with
//! one residual norm per row, which
//! [`crate::paper_lock::run_real_data`] then ingests.
/// DROID-compatible residual stream is sized at runtime by the
/// preprocessor; the Rust surface only exposes a placeholder fixture
/// so dsfb-gray can audit the module's documentation coverage.
pub const FIXTURE_PLACEHOLDER: = ;
/// No in-crate smoke fixture — DROID is large-scale and only exercised
/// via the real-data path.